diff options
author | Johnathan Corgan <johnathan@corganlabs.com> | 2014-10-01 12:27:08 -0700 |
---|---|---|
committer | Johnathan Corgan <johnathan@corganlabs.com> | 2014-10-01 12:27:08 -0700 |
commit | a166f439d9c33165ccc0a3fee3d63cdef2040d5a (patch) | |
tree | 3df6ba5cd6b5fb8ab28e065e20256ea022d1d219 /grc/python/Generator.py | |
parent | 029079cf5cee92c64755318b4fe5d46d45b61b7a (diff) | |
parent | 1edeff17c0b11e9ab2c626a82472690318268a9a (diff) |
Merge branch 'maint'
Diffstat (limited to 'grc/python/Generator.py')
-rw-r--r-- | grc/python/Generator.py | 6 |
1 files changed, 3 insertions, 3 deletions
diff --git a/grc/python/Generator.py b/grc/python/Generator.py index 92f36cf30b..caf45fa3b1 100644 --- a/grc/python/Generator.py +++ b/grc/python/Generator.py @@ -93,10 +93,10 @@ This is usually undesired. Consider removing the throttle block.''') # python_exe = 'pythonw' #setup the command args to run - cmds = [python_exe, '-u', self.get_file_path()] #-u is unbuffered stdio + cmds = [python_exe, '-u', self.get_file_path()] # -u is unbuffered stdio - #when in no gui mode on linux, use an xterm (looks nice) - if self._generate_options == 'no_gui' and 'linux' in sys.platform.lower(): + # when in no gui mode on linux, use a graphical terminal (looks nice) + if self._generate_options == 'no_gui' and os.path.exists(XTERM_EXECUTABLE): cmds = [XTERM_EXECUTABLE, '-e'] + cmds p = subprocess.Popen(args=cmds, stdout=subprocess.PIPE, stderr=subprocess.STDOUT, shell=False, universal_newlines=True) |