diff options
author | Johnathan Corgan <johnathan@corganlabs.com> | 2015-06-17 14:39:30 -0700 |
---|---|---|
committer | Johnathan Corgan <johnathan@corganlabs.com> | 2015-06-17 14:39:30 -0700 |
commit | ddb2772677f773480400bc04e94c79d79f608b1d (patch) | |
tree | 3229520990089c11bb32ab3b119b2e96b11a2c23 /grc/python/Generator.py | |
parent | 41b1d02c9882393376933280b3ab7dbad5dd336f (diff) | |
parent | 8ea2ce2cc793388bc4686f0dd271be2ecce80acd (diff) |
Merge branch 'maint'
Diffstat (limited to 'grc/python/Generator.py')
-rw-r--r-- | grc/python/Generator.py | 2 |
1 files changed, 1 insertions, 1 deletions
diff --git a/grc/python/Generator.py b/grc/python/Generator.py index 33807c5b95..d9e92cd31f 100644 --- a/grc/python/Generator.py +++ b/grc/python/Generator.py @@ -129,7 +129,7 @@ class TopBlockGenerator(object): # when in no gui mode on linux, use a graphical terminal (looks nice) xterm_executable = find_executable(XTERM_EXECUTABLE) if self._generate_options == 'no_gui' and xterm_executable: - cmds = [xterm_executable, '-e'] + ' '.join(cmds) + cmds = [xterm_executable, '-e'] + cmds p = subprocess.Popen( args=cmds, stdout=subprocess.PIPE, stderr=subprocess.STDOUT, |