Starting to play with TheOneRing inside of empathy :)
[theonering] / src / connection_manager.py
index 42153ac..37202c3 100644 (file)
@@ -1,3 +1,12 @@
+"""
+Empathy Experience:
+       .profile file needs to be updated with proper presence
+       Conversations are incomplete
+       Conversations show the persons name, not needed due to aliases
+       Can't reopen a conversation for someone when I've already closed it
+       Can't call
+"""
+
 import logging
 
 import gobject
@@ -29,7 +38,7 @@ class TheOneRingConnectionManager(telepathy.server.ConnectionManager):
                @returns the mandatory and optional parameters for creating a connection
                """
                if proto not in self._protos:
-                       raise telepathy.NotImplemented('unknown protocol %s' % proto)
+                       raise telepathy.errors.NotImplemented('unknown protocol %s' % proto)
 
                result = []
                ConnectionClass = self._protos[proto]