From c294fa0d6e06263764f0420cd0f6b17197fcc015 Mon Sep 17 00:00:00 2001 From: Yann Leboulanger Date: Mon, 24 Nov 2008 09:43:06 +0000 Subject: [PATCH] fix previous commit --- src/features_window.py | 4 ++-- 1 file changed, 2 insertions(+), 2 deletions(-) diff --git a/src/features_window.py b/src/features_window.py index 65629e614..c430f0a91 100644 --- a/src/features_window.py +++ b/src/features_window.py @@ -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())