summaryrefslogtreecommitdiffstats
diff options
context:
space:
mode:
authorHuang Peng <shawn.p.huang@gmail.com>2008-11-23 20:59:14 +0800
committerHuang Peng <shawn.p.huang@gmail.com>2008-11-23 20:59:14 +0800
commit08470bed58fc80d186f4641817cb1dad1847fc8c (patch)
tree84391c4f84b137a36924c6dc31e62324f0e3b3ee
parent45726ffaf0e79e9d9421cb184be412df0997b319 (diff)
downloadibus-08470bed58fc80d186f4641817cb1dad1847fc8c.tar.gz
ibus-08470bed58fc80d186f4641817cb1dad1847fc8c.tar.xz
ibus-08470bed58fc80d186f4641817cb1dad1847fc8c.zip
Fix problem introduced by last commit.
-rw-r--r--ui/gtk/panel.py2
1 files changed, 1 insertions, 1 deletions
diff --git a/ui/gtk/panel.py b/ui/gtk/panel.py
index bb61890..1456cc4 100644
--- a/ui/gtk/panel.py
+++ b/ui/gtk/panel.py
@@ -371,7 +371,7 @@ class Panel(ibus.PanelBase):
print >> sys.stderr, "Unknown command %s" % command
def __sigchld_cb(self, sig, sf):
- pid = os.wait()
+ pid, status = os.wait()
if self.__setup_pid == pid:
self.__setup_pid = 0