Web   ·   Wiki   ·   Activities   ·   Blog   ·   Lists   ·   Chat   ·   Meeting   ·   Bugs   ·   Git   ·   Translate   ·   Archive   ·   People   ·   Donate
summaryrefslogtreecommitdiffstats
path: root/shell
diff options
context:
space:
mode:
authorDan Williams <dcbw@localhost.localdomain>2006-07-24 16:45:53 (GMT)
committer Dan Williams <dcbw@localhost.localdomain>2006-07-24 16:45:53 (GMT)
commit7cc68303f9b369d650efd26f1ab3636c26b5be0c (patch)
treeb50b21db98909fe08af5434d7e76ad87a5cb16b1 /shell
parentbfab84acc9cfea367ac08086eb4de0d753d91653 (diff)
Don't import gtk, just use gobject
Diffstat (limited to 'shell')
-rw-r--r--shell/PresenceService/PresenceService.py4
1 files changed, 2 insertions, 2 deletions
diff --git a/shell/PresenceService/PresenceService.py b/shell/PresenceService/PresenceService.py
index e2aba2e..423997e 100644
--- a/shell/PresenceService/PresenceService.py
+++ b/shell/PresenceService/PresenceService.py
@@ -643,9 +643,9 @@ class PresenceService(object):
def main():
- import gtk
+ loop = gobject.MainLoop()
ps = PresenceService()
- gtk.main()
+ loop.run()
if __name__ == "__main__":
main()