HACK: Oops, got this hack backwards, its the Request code that is killing me, great...
authorEd Page <eopage@byu.net>
Sun, 10 Jan 2010 02:01:49 +0000 (20:01 -0600)
committerEd Page <eopage@byu.net>
Sun, 10 Jan 2010 02:01:49 +0000 (20:01 -0600)
src/connection.py

index 9f1d7a2..8914e2f 100644 (file)
@@ -41,8 +41,8 @@ _moduleLogger = logging.getLogger("connection")
 
 class TheOneRingConnection(
        telepathy.server.Connection,
-       telepathy.server.ConnectionInterfaceRequests, # already a mixin
-       #contacts.ContactsMixin,
+       #telepathy.server.ConnectionInterfaceRequests, # already a mixin
+       contacts.ContactsMixin,
        aliasing.AliasingMixin,
        simple_presence.SimplePresenceMixin,
        presence.PresenceMixin,
@@ -79,8 +79,8 @@ class TheOneRingConnection(
                        account,
                        constants._telepathy_implementation_name_
                )
-               telepathy.server.ConnectionInterfaceRequests.__init__(self)
-               #contacts.ContactsMixin.__init__(self)
+               #telepathy.server.ConnectionInterfaceRequests.__init__(self)
+               contacts.ContactsMixin.__init__(self)
                aliasing.AliasingMixin.__init__(self)
                simple_presence.SimplePresenceMixin.__init__(self)
                presence.PresenceMixin.__init__(self)