From 665b6e550bb344abddd111c51b2bd1fb10f042c4 Mon Sep 17 00:00:00 2001 From: Josh Blum Date: Wed, 18 May 2011 10:24:52 -0700 Subject: grc: disable pythonw on darwin, apparently not needed --- grc/python/Generator.py | 5 +++-- 1 file changed, 3 insertions(+), 2 deletions(-) (limited to 'grc/python') 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 -- cgit