[Date Prev][Date Next][Thread Prev][Thread Next][Date Index][Thread Index]
[Commit-gnuradio] [gnuradio] 01/01: Revert "grc: better Popen argument h
From: |
git |
Subject: |
[Commit-gnuradio] [gnuradio] 01/01: Revert "grc: better Popen argument handling for CLI based apps" |
Date: |
Wed, 17 Jun 2015 21:58:36 +0000 (UTC) |
This is an automated email from the git hooks/post-receive script.
jcorgan pushed a commit to branch maint
in repository gnuradio.
commit 8ea2ce2cc793388bc4686f0dd271be2ecce80acd
Author: Johnathan Corgan <address@hidden>
Date: Wed Jun 17 14:31:53 2015 -0700
Revert "grc: better Popen argument handling for CLI based apps"
This reverts commit f184ccf0efcd52d455f8af13aae3d8eeeeefbfaa.
---
grc/python/Generator.py | 2 +-
1 file changed, 1 insertion(+), 1 deletion(-)
diff --git a/grc/python/Generator.py b/grc/python/Generator.py
index fc1dd56..a3f9f10 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,