summaryrefslogtreecommitdiff
path: root/grc/python
diff options
context:
space:
mode:
authorJohnathan Corgan <johnathan@corganlabs.com>2015-06-17 14:31:53 -0700
committerJohnathan Corgan <johnathan@corganlabs.com>2015-06-17 14:31:53 -0700
commit8ea2ce2cc793388bc4686f0dd271be2ecce80acd (patch)
treeb2c847c22b5e33e9d6edc33c5404dc3adc718fc9 /grc/python
parent2713a1e0f90c9e34ae7133fc672149a44ff26a9f (diff)
Revert "grc: better Popen argument handling for CLI based apps"
This reverts commit f184ccf0efcd52d455f8af13aae3d8eeeeefbfaa.
Diffstat (limited to 'grc/python')
-rw-r--r--grc/python/Generator.py2
1 files changed, 1 insertions, 1 deletions
diff --git a/grc/python/Generator.py b/grc/python/Generator.py
index fc1dd56f50..a3f9f10fc1 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,