Show More
@@ -96,11 +96,7 b' def pycmd2argv(cmd):' | |||
|
96 | 96 | return [cmd] |
|
97 | 97 | else: |
|
98 | 98 | if sys.platform == 'win32': |
|
99 | # The -u option here turns on unbuffered output, which is required | |
|
100 | # on Win32 to prevent wierd conflict and problems with Twisted. | |
|
101 | # Also, use sys.executable to make sure we are picking up the | |
|
102 | # right python exe. | |
|
103 | return [sys.executable, '-u', cmd] | |
|
99 | return [sys.executable, cmd] | |
|
104 | 100 | else: |
|
105 | 101 | return [sys.executable, cmd] |
|
106 | 102 |
General Comments 0
You need to be logged in to leave comments.
Login now