X-Git-Url: http://git.maemo.org/git/?p=theonering;a=blobdiff_plain;f=src%2Fpresence.py;h=ab6fc66655d2a8ca3c5eff2b4becb61d9fe3fb0b;hp=8c3825235f997c871dd39be92d2e7d75b80aaa64;hb=b1564246eeb9d052854c119f19b603414b780e84;hpb=1bd375495719117939fa0ac384835001485eeef7 diff --git a/src/presence.py b/src/presence.py index 8c38252..ab6fc66 100644 --- a/src/presence.py +++ b/src/presence.py @@ -1,7 +1,6 @@ import logging -import telepathy - +import tp import gtk_toolbox import simple_presence @@ -9,10 +8,10 @@ import simple_presence _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)