Missing a comma

parent 1e7b0b88
...@@ -494,7 +494,7 @@ class Gcode_tools(inkex.Effect): ...@@ -494,7 +494,7 @@ class Gcode_tools(inkex.Effect):
self.OptionParser.add_option("", "--showimg", action="store", type="inkbool", dest="showimg", default=False, help="Show rastered images") self.OptionParser.add_option("", "--showimg", action="store", type="inkbool", dest="showimg", default=False, help="Show rastered images")
self.OptionParser.add_option("", "--colorspace", action="store", type="int", dest="colorspace", default="256", help="reduce colorspace") self.OptionParser.add_option("", "--colorspace", action="store", type="int", dest="colorspace", default="256", help="reduce colorspace")
self.OptionParser.add_option("", "--dpi", action="store", type="int", dest="dpi", default="270", help="set DPI for inkscape export") self.OptionParser.add_option("", "--dpi", action="store", type="int", dest="dpi", default="270", help="set DPI for inkscape export")
self.OptionParser.add_option("", "--udpi", action="store", type="int" dest="udpi", default="96", help="set DPI for default inkscape resolution") self.OptionParser.add_option("", "--udpi", action="store", type="int", dest="udpi", default="96", help="set DPI for default inkscape resolution")
self.OptionParser.add_option("", "--invert", action="store", type="inkbool", dest="invert", default=True, help="swap to negative colors") self.OptionParser.add_option("", "--invert", action="store", type="inkbool", dest="invert", default=True, help="swap to negative colors")
self.OptionParser.add_option("", "--cooler", action="store", type="float", dest="cooler", default="0.0", help="set cooler temperature. 0 to disable") self.OptionParser.add_option("", "--cooler", action="store", type="float", dest="cooler", default="0.0", help="set cooler temperature. 0 to disable")
self.OptionParser.add_option("", "--cooleronstop", action="store", type="inkbool", dest="cooleronstop", default=False, help="continue to cool down when finished") self.OptionParser.add_option("", "--cooleronstop", action="store", type="inkbool", dest="cooleronstop", default=False, help="continue to cool down when finished")
......
Markdown is supported
0% or
You are about to add 0 people to the discussion. Proceed with caution.
Finish editing this message first!
Please register or to comment