Web   ·   Wiki   ·   Activities   ·   Blog   ·   Lists   ·   Chat   ·   Meeting   ·   Bugs   ·   Git   ·   Translate   ·   Archive   ·   People   ·   Donate
summaryrefslogtreecommitdiffstats
path: root/services
diff options
context:
space:
mode:
authorDan Williams <dcbw@redhat.com>2007-04-06 19:29:14 (GMT)
committer Dan Williams <dcbw@redhat.com>2007-04-06 19:29:14 (GMT)
commitfc12f73fba418c91dcc795d169d4995bbf046693 (patch)
treebf434e1844837ca84e5761059ae152b22a931efa /services
parente37bba009495914d3bc2da73cbcbcfae05a4b012 (diff)
parentc9c1117872bf47920c348f8cd0a6f6e8e470fac7 (diff)
Merge branch 'master' of git+ssh://dev.laptop.org/git/sugar
Diffstat (limited to 'services')
-rw-r--r--services/presence/PresenceService.py5
1 files changed, 0 insertions, 5 deletions
diff --git a/services/presence/PresenceService.py b/services/presence/PresenceService.py
index 8dcee32..a5ce68e 100644
--- a/services/presence/PresenceService.py
+++ b/services/presence/PresenceService.py
@@ -865,17 +865,12 @@ class PresenceService(object):
def main():
- from sugar import TracebackUtils
loop = gobject.MainLoop()
ps = PresenceService()
- tbh = TracebackUtils.TracebackHelper()
try:
loop.run()
except KeyboardInterrupt:
print 'Ctrl+C pressed, exiting...'
- del tbh
-
-
if __name__ == "__main__":
main()