We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
There was an error while loading. Please reload this page.
1 parent aad5dce commit 8d55701Copy full SHA for 8d55701
mathicsscript/version.py
@@ -3,4 +3,5 @@
3
# This file is suitable for sourcing inside POSIX shell as
4
# well as importing into Python. That's why there is no
5
# space around "=" below.
6
+# fmt: off
7
__version__="3.1.1.dev0" # noqa
rst2html.py
@@ -51,7 +51,7 @@ def clean_line(line):
51
for (regex, sub) in regex_subs:
52
line = regex.sub(sub, line)
53
except Exception as ex:
54
- print("ERROR: %s, (line(%s)" % (regex, sub))
+ print(f"ERROR: {regex}, (line({sub})")
55
raise ex
56
57
return line
0 commit comments