From 2b17e5e5425de214ac2b94c581d5083d59b31ffe Mon Sep 17 00:00:00 2001 From: Sebastien Estienne Date: Sun, 25 Feb 2007 12:56:18 +0000 Subject: bugfix for python 2.5 git-svn-id: file:///home/lennart/svn/public/service-discovery-applet/trunk@127 3be567f1-68ff-0310-b24a-ad7cc433fd2f --- plugins/gconfterminal.py.in | 3 +-- 1 file changed, 1 insertion(+), 2 deletions(-) diff --git a/plugins/gconfterminal.py.in b/plugins/gconfterminal.py.in index 2b9938e..d0074e8 100644 --- a/plugins/gconfterminal.py.in +++ b/plugins/gconfterminal.py.in @@ -126,8 +126,7 @@ class plugin_gnometerminal: cmdline = terminal.split(" ") cmdline.extend(sshline.split(" ")) print cmdline - pid = subprocess.Popen(cmdline).pid - os.waitpid(pid) + subprocess.Popen(cmdline).wait() def load(): return plugin_gnometerminal() -- cgit