summaryrefslogtreecommitdiff
path: root/grc/python
diff options
context:
space:
mode:
authorBen Reynwar2011-06-13 13:30:19 -0700
committerBen Reynwar2011-06-13 13:30:19 -0700
commitf73984a6b43af4c4795af4b91657cc7b1ff49dae (patch)
treef7ed1390445a1a3e8905dba741163a3876ad40f2 /grc/python
parent2c8b1d999e7388c4513149615b5c7ebedb854d35 (diff)
parent5ce630cbce6460b739b175257ce0d717095a55f4 (diff)
downloadgnuradio-f73984a6b43af4c4795af4b91657cc7b1ff49dae.tar.gz
gnuradio-f73984a6b43af4c4795af4b91657cc7b1ff49dae.tar.bz2
gnuradio-f73984a6b43af4c4795af4b91657cc7b1ff49dae.zip
Merge branch '8psk' of https://github.com/trondeau/gnuradio into 8psk
Diffstat (limited to 'grc/python')
-rw-r--r--grc/python/Generator.py5
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