Bumping to 0.7.6 and releasing the package
[theonering] / src / presence.py
index f078e27..ab6fc66 100644 (file)
@@ -1,19 +1,17 @@
 import logging
 
-import telepathy
-
+import tp
 import gtk_toolbox
 import simple_presence
-import gvoice.state_machine as state_machine
 
 
 _moduleLogger = logging.getLogger('presence')
 
 
-class PresenceMixin(telepathy.server.ConnectionInterfacePresence, simple_presence.TheOneRingPresence):
+class PresenceMixin(tp.ConnectionInterfacePresence, simple_presence.TheOneRingPresence):
 
        def __init__(self):
-               telepathy.server.ConnectionInterfacePresence.__init__(self)
+               tp.ConnectionInterfacePresence.__init__(self)
                simple_presence.TheOneRingPresence.__init__(self)
 
        @gtk_toolbox.log_exception(_moduleLogger)