diff options
author | Josh Blum | 2011-05-18 10:24:52 -0700 |
---|---|---|
committer | Josh Blum | 2011-06-09 10:12:09 -0700 |
commit | 665b6e550bb344abddd111c51b2bd1fb10f042c4 (patch) | |
tree | d5de47ccccc145c4eaea76202424814bd49c4a56 /grc | |
parent | d3d68e529063dceaec49e7ca06b8dc3b1f7bde0f (diff) | |
download | gnuradio-665b6e550bb344abddd111c51b2bd1fb10f042c4.tar.gz gnuradio-665b6e550bb344abddd111c51b2bd1fb10f042c4.tar.bz2 gnuradio-665b6e550bb344abddd111c51b2bd1fb10f042c4.zip |
grc: disable pythonw on darwin, apparently not needed
Diffstat (limited to 'grc')
-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 |