Add files via upload

Fixed format string on print statement.
This commit is contained in:
luvtofish
2022-12-06 15:05:52 -06:00
committed by GitHub
parent 51f43db5e1
commit e0ad54dece

View File

@@ -180,7 +180,7 @@ def processArguments(argstring):
OUTPUT_LINE_NUMBERS = True
if args.no_show_editor:
SHOW_EDITOR = False
print("Show editor = %d" % SHOW_EDITOR)
print("Show editor = %r" % (SHOW_EDITOR))
if args.precision is not None:
PRECISION = args.precision
if args.preamble is not None: