Web   ·   Wiki   ·   Activities   ·   Blog   ·   Lists   ·   Chat   ·   Meeting   ·   Bugs   ·   Git   ·   Translate   ·   Archive   ·   People   ·   Donate
summaryrefslogtreecommitdiffstats
path: root/services
diff options
context:
space:
mode:
authorMarco Pesenti Gritti <mpg@redhat.com>2007-04-06 18:13:37 (GMT)
committer Marco Pesenti Gritti <mpg@redhat.com>2007-04-06 18:13:37 (GMT)
commitc9c1117872bf47920c348f8cd0a6f6e8e470fac7 (patch)
tree661e8291bd595f8694a568c473ad7619ae7526ee /services
parent9c0e0783dbbaa85bcbe94649281f69a26b656a3e (diff)
Remove the threadframe stuff which went unused.
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()