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:
@@ -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")
|
||||
|
||||
Reference in New Issue
Block a user