summaryrefslogtreecommitdiffstats
diff options
context:
space:
mode:
authorSebastien Estienne <sebastien.estienne@gmail.com>2007-02-25 12:56:18 +0000
committerSebastien Estienne <sebastien.estienne@gmail.com>2007-02-25 12:56:18 +0000
commit2b17e5e5425de214ac2b94c581d5083d59b31ffe (patch)
tree7cd85883bec2173a031706ee224654d99efd6309
parent0c0a48f2fce92902fb1f6fdc0bc5a91b269ff75d (diff)
bugfix for python 2.5
git-svn-id: file:///home/lennart/svn/public/service-discovery-applet/trunk@127 3be567f1-68ff-0310-b24a-ad7cc433fd2f
-rw-r--r--plugins/gconfterminal.py.in3
1 files changed, 1 insertions, 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()