Skip to content

Commit

Permalink
Remove double quoting of the output file parameter for ghostscript.
Browse files Browse the repository at this point in the history
  • Loading branch information
t-paul committed Apr 14, 2022
1 parent 08bf69b commit 45a5e3b
Showing 1 changed file with 1 addition and 1 deletion.
2 changes: 1 addition & 1 deletion tests/export_pngtest.py
Expand Up @@ -82,7 +82,7 @@ def createImport(inputfile, scadfile):
if result != 0:
failquit('OpenSCAD failed with return code ' + str(result))

convert_cmd = gs_cmd + ["-sOutputFile=\"" + pngfile + "\"", exportfile]
convert_cmd = gs_cmd + ["-sOutputFile=" + pngfile, exportfile]
print('Running Converter:', ' '.join(convert_cmd), file=sys.stderr)
result = subprocess.call(convert_cmd)
if result != 0:
Expand Down

0 comments on commit 45a5e3b

Please sign in to comment.