Use pythonw.exe instead of python.exe

master
Yevgen Muntyan 2006-11-26 23:20:21 -06:00
parent f6f4ca0f29
commit 0f763a8d58
1 changed files with 1 additions and 1 deletions

View File

@ -8,7 +8,7 @@ import os
from moo.utils import _
if os.name == 'nt':
PYTHON_COMMAND = '"' + sys.exec_prefix + '\\python.exe" -u'
PYTHON_COMMAND = '"' + sys.exec_prefix + '\\pythonw.exe" -u'
else:
PYTHON_COMMAND = 'python -u'