Skip to content

Commit 13b89f5

Browse files
committed
fix
1 parent c385924 commit 13b89f5

File tree

1 file changed

+3
-3
lines changed

1 file changed

+3
-3
lines changed

gcodeplot.py

Lines changed: 3 additions & 3 deletions
Original file line numberDiff line numberDiff line change
@@ -732,7 +732,7 @@ def help(error=False):
732732
toolMode = "custom"
733733
booleanExtractColor = False
734734
quiet = False
735-
comments = ";"
735+
comment = ";"
736736
sendAndSave = False
737737
directionAngle = None
738738

@@ -985,7 +985,7 @@ def help(error=False):
985985
print('overcut=%.3f' % overcut)
986986
print('simulation' if svgSimulation else 'no-simulation')
987987
print('direction=' + ('none' if directionAngle is None else '%.3f'%directionAngle))
988-
print('comments=' + comments)
988+
print('comment=' + comment)
989989

990990
sys.exit(0)
991991

@@ -1090,7 +1090,7 @@ def help(error=False):
10901090
if hpglOut:
10911091
sys.stdout.write(g)
10921092
else:
1093-
print('\n'.join(fixComments(plotter, g, comments=comments)))
1093+
print('\n'.join(fixComments(plotter, g, comment=comment)))
10941094

10951095
else:
10961096
sys.stderr.write("No points.")

0 commit comments

Comments
 (0)