Skip to content

Commit

Permalink
Merge pull request #25 from Moini/patch-2
Browse files Browse the repository at this point in the history
Fix mixed quotes

My bad. One should never ever apply even the tiniest change after testing. Sorry.

Thanks for spotting this!
  • Loading branch information
jnweiger authored Jun 26, 2018
2 parents 90e79e5 + a9371ca commit 408d66e
Showing 1 changed file with 1 addition and 1 deletion.
2 changes: 1 addition & 1 deletion centerline-trace.py
Original file line number Diff line number Diff line change
Expand Up @@ -122,7 +122,7 @@ def __init__(self):
self.filter_equal_light = 0.0 # [0.0 .. 1.9] Use 1.0 with photos. Use 0.0 with perfect scans.

# Test if autotrace is installed and in path
command = autotrace_exe + ' --version"
command = autotrace_exe + ' --version'

p = subprocess.Popen(command, shell=True, stdout=subprocess.PIPE, stderr=subprocess.PIPE)
return_code = p.wait()
Expand Down

0 comments on commit 408d66e

Please sign in to comment.