26 lines
701 B
Diff
26 lines
701 B
Diff
|
|
From ad5cae2d091db275ccfa6f1d232ab94eed441b51 Mon Sep 17 00:00:00 2001
|
||
|
|
From: test <test@example.com>
|
||
|
|
Date: Thu, 25 Apr 2024 02:38:09 +0000
|
||
|
|
Subject: [PATCH] shapepar comments out print
|
||
|
|
|
||
|
|
---
|
||
|
|
doc/generic/shapepar/proshap.py | 2 +-
|
||
|
|
1 file changed, 1 insertion(+), 1 deletion(-)
|
||
|
|
|
||
|
|
diff --git a/doc/generic/shapepar/proshap.py b/doc/generic/shapepar/proshap.py
|
||
|
|
index e91e65e..7d6c7d7 100644
|
||
|
|
--- a/doc/generic/shapepar/proshap.py
|
||
|
|
+++ b/doc/generic/shapepar/proshap.py
|
||
|
|
@@ -342,7 +342,7 @@ result = "\\gdef\\bassshape{{"+ middle + \
|
||
|
|
|
||
|
|
|
||
|
|
result = result+ "\\\\{"+str(height) +"}e{"+ middle +"}" + "}\n"
|
||
|
|
-print result
|
||
|
|
+print(result)
|
||
|
|
f = open("result.tex","w")
|
||
|
|
f.write(result)
|
||
|
|
f.close()
|
||
|
|
--
|
||
|
|
2.43.0
|
||
|
|
|