fix previous commit

This commit is contained in:
Yann Leboulanger 2008-11-24 09:43:06 +00:00
parent 0c6b1a391b
commit c294fa0d6e
1 changed files with 2 additions and 2 deletions

View File

@ -292,8 +292,8 @@ class FeaturesWindow:
if os.name == 'nt': if os.name == 'nt':
# CREATE_NO_WINDOW # CREATE_NO_WINDOW
p = Popen(['dvipng', '-bg', 'white', '-T', 'tight', p = Popen(['dvipng', '-bg', 'white', '-T', 'tight',
creationflags=0x08000000, tmpfile + '.dvi', '-o', tmpfile + '.dvi', '-o', tmpfile + '.png'],
tmpfile + '.png'], cwd=gettempdir()) creationflags=0x08000000, cwd=gettempdir())
else: else:
p = Popen(['dvipng', '-bg', 'white', '-T', 'tight', p = Popen(['dvipng', '-bg', 'white', '-T', 'tight',
tmpfile + '.dvi', '-o', tmpfile + '.png'], cwd=gettempdir()) tmpfile + '.dvi', '-o', tmpfile + '.png'], cwd=gettempdir())