summaryrefslogtreecommitdiffstats
path: root/plugins/gconfterminal.py.in
diff options
context:
space:
mode:
Diffstat (limited to 'plugins/gconfterminal.py.in')
-rw-r--r--plugins/gconfterminal.py.in3
1 files changed, 2 insertions, 1 deletions
diff --git a/plugins/gconfterminal.py.in b/plugins/gconfterminal.py.in
index 8dbaef8..4330ac1 100644
--- a/plugins/gconfterminal.py.in
+++ b/plugins/gconfterminal.py.in
@@ -126,7 +126,8 @@ class plugin_gnometerminal:
cmdline = terminal.split(" ")
cmdline.extend(sshline.split(" "))
print cmdline
- subprocess.Popen(cmdline)
+ pid = subprocess.Popen(cmdline).pid
+ os.waitpid(pid)
def load():
return plugin_gnometerminal()