CAM: Print "Show editor" status boolean as string, not integer

This get rid of a Python style warning and make the output easier
to understand.
This commit is contained in:
Petter Reinholdtsen
2025-12-01 05:23:53 +01:00
parent 7a8135d863
commit 533e957f80

View File

@@ -161,7 +161,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 = %s" % SHOW_EDITOR)
PRECISION = args.precision
if args.preamble is not None:
PREAMBLE = args.preamble.replace("\\n", "\n")