diff options
Diffstat (limited to 'grc/python/Generator.py')
-rw-r--r-- | grc/python/Generator.py | 5 |
1 files changed, 3 insertions, 2 deletions
diff --git a/grc/python/Generator.py b/grc/python/Generator.py index b31f0a009..2a2dfdd49 100644 --- a/grc/python/Generator.py +++ b/grc/python/Generator.py @@ -78,8 +78,9 @@ Add a Misc->Throttle block to your flow graph to avoid CPU congestion.''') python_exe = sys.executable #when using wx gui on mac os, execute with pythonw - if self._generate_options == 'wx_gui' and 'darwin' in sys.platform.lower(): - python_exe += 'w' + #using pythonw is not necessary anymore, disabled below + #if self._generate_options == 'wx_gui' and 'darwin' in sys.platform.lower(): + # python_exe = 'pythonw' #setup the command args to run cmds = [python_exe, '-u', self.get_file_path()] #-u is unbuffered stdio |