Web   ·   Wiki   ·   Activities   ·   Blog   ·   Lists   ·   Chat   ·   Meeting   ·   Bugs   ·   Git   ·   Translate   ·   Archive   ·   People   ·   Donate
summaryrefslogtreecommitdiffstats
path: root/services
diff options
context:
space:
mode:
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 5f8c7a4..206b2fe 100644
--- a/services/presence/PresenceService.py
+++ b/services/presence/PresenceService.py
@@ -848,17 +848,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()