Skip to content

Commit

Permalink
fix
Browse files Browse the repository at this point in the history
  • Loading branch information
arpruss committed Jan 21, 2018
1 parent c385924 commit 13b89f5
Showing 1 changed file with 3 additions and 3 deletions.
6 changes: 3 additions & 3 deletions gcodeplot.py
Original file line number Diff line number Diff line change
Expand Up @@ -732,7 +732,7 @@ def help(error=False):
toolMode = "custom"
booleanExtractColor = False
quiet = False
comments = ";"
comment = ";"
sendAndSave = False
directionAngle = None

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

sys.exit(0)

Expand Down Expand Up @@ -1090,7 +1090,7 @@ def help(error=False):
if hpglOut:
sys.stdout.write(g)
else:
print('\n'.join(fixComments(plotter, g, comments=comments)))
print('\n'.join(fixComments(plotter, g, comment=comment)))

else:
sys.stderr.write("No points.")
Expand Down

0 comments on commit 13b89f5

Please sign in to comment.