Skip to content
Snippets Groups Projects
Commit c294fa0d authored by Yann Leboulanger's avatar Yann Leboulanger
Browse files

fix previous commit

parent 0c6b1a39
No related branches found
No related tags found
No related merge requests found
......@@ -292,8 +292,8 @@ class FeaturesWindow:
if os.name == 'nt':
# CREATE_NO_WINDOW
p = Popen(['dvipng', '-bg', 'white', '-T', 'tight',
creationflags=0x08000000, tmpfile + '.dvi', '-o',
tmpfile + '.png'], cwd=gettempdir())
tmpfile + '.dvi', '-o', tmpfile + '.png'],
creationflags=0x08000000, cwd=gettempdir())
else:
p = Popen(['dvipng', '-bg', 'white', '-T', 'tight',
tmpfile + '.dvi', '-o', tmpfile + '.png'], cwd=gettempdir())
......
0% Loading or .
You are about to add 0 people to the discussion. Proceed with caution.
Finish editing this message first!
Please register or to comment