Web   ·   Wiki   ·   Activities   ·   Blog   ·   Lists   ·   Chat   ·   Meeting   ·   Bugs   ·   Git   ·   Translate   ·   Archive   ·   People   ·   Donate
summaryrefslogtreecommitdiffstats
diff options
context:
space:
mode:
authorDaniel Narvaez <dwnarvaez@gmail.com>2012-10-30 12:11:29 (GMT)
committer Manuel QuiƱones <manuq@laptop.org>2012-11-01 12:40:55 (GMT)
commit62d41f2a08a5c191e5d4667f7bed1b0ea375bd8a (patch)
tree14e5e090a5764b5e482394b745e1c9951e1d0b52
parentcc5368280c1b110c08c2370f81f076e10f3ef290 (diff)
Fix traceback when closing object chooser
The code had not been updated to the introspection API. Signed-off-by: Daniel Narvaez <dwnarvaez@gmail.com> Acked-by: Manuel QuiƱones <manuq@laptop.org>
-rw-r--r--src/jarabe/journal/objectchooser.py2
1 files changed, 1 insertions, 1 deletions
diff --git a/src/jarabe/journal/objectchooser.py b/src/jarabe/journal/objectchooser.py
index d860b0d..8a664c4 100644
--- a/src/jarabe/journal/objectchooser.py
+++ b/src/jarabe/journal/objectchooser.py
@@ -104,7 +104,7 @@ class ObjectChooser(Gtk.Window):
# TODO: Should we disconnect the signal here?
def __window_closed_cb(self, screen, window, parent):
- if window.get_xid() == parent.xid:
+ if window.get_xid() == parent.get_xid():
self.destroy()
def __entry_activated_cb(self, list_view, uid):