diff options
author | Johnathan Corgan <johnathan@corganlabs.com> | 2015-06-14 09:15:49 -0700 |
---|---|---|
committer | Johnathan Corgan <johnathan@corganlabs.com> | 2015-06-14 09:15:49 -0700 |
commit | 1ff0e745963084b86ad4d25e12f889f1b93775aa (patch) | |
tree | 42fb5262d106366a9beefe0265951470f826338e /grc/python/Generator.py | |
parent | e8165e7051ab50c95a560cd02dc8e42e92953bbb (diff) | |
parent | 42c892c92d13ba8803983db118f018e5d6b9f9b9 (diff) |
Merge remote-tracking branch 'gnuradio-wg-grc/maint_grcwg' into 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 a3f9f10fc1..fc1dd56f50 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'] + cmds + cmds = [xterm_executable, '-e'] + ' '.join(cmds) p = subprocess.Popen( args=cmds, stdout=subprocess.PIPE, stderr=subprocess.STDOUT, |