Skip to content

Commit

Permalink
remove semicolon
Browse files Browse the repository at this point in the history
  • Loading branch information
xoan committed May 2, 2017
1 parent 29fbb6d commit d62b47c
Showing 1 changed file with 1 addition and 1 deletion.
2 changes: 1 addition & 1 deletion printrun/pronterface.py
Original file line number Diff line number Diff line change
Expand Up @@ -2231,7 +2231,7 @@ def set_slic3r_config(self, configfile, cat, file):
preset = os.path.basename(file)
# Starting from Slic3r 1.3.0, preset names have no extension
if version.split(".") >= ["1","3","0"]:
preset = os.path.splitext(preset)[0];
preset = os.path.splitext(preset)[0]
config.set("presets", cat, preset)
f = StringIO.StringIO()
config.write(f)
Expand Down

0 comments on commit d62b47c

Please sign in to comment.