Web   ·   Wiki   ·   Activities   ·   Blog   ·   Lists   ·   Chat   ·   Meeting   ·   Bugs   ·   Git   ·   Translate   ·   Archive   ·   People   ·   Donate
summaryrefslogtreecommitdiffstats
path: root/src/sugar/presence/util.py
diff options
context:
space:
mode:
authorTomeu Vizoso <tomeu.vizoso@collabora.co.uk>2010-07-13 10:15:43 (GMT)
committer Tomeu Vizoso <tomeu.vizoso@collabora.co.uk>2010-08-20 13:33:53 (GMT)
commit46159e987b8bf20f57ce1e8fca78338fc90508cf (patch)
treedf3e8aaaabcd0914541f0c937c79dc1111cf13af /src/sugar/presence/util.py
parent1a4c721f3d564dcb7d395196130c0299a4ec1fd4 (diff)
Pass the account path to the Activity on creation
Diffstat (limited to 'src/sugar/presence/util.py')
-rw-r--r--src/sugar/presence/util.py6
1 files changed, 2 insertions, 4 deletions
diff --git a/src/sugar/presence/util.py b/src/sugar/presence/util.py
index f00228f..30346c1 100644
--- a/src/sugar/presence/util.py
+++ b/src/sugar/presence/util.py
@@ -47,10 +47,8 @@ class ConnectionManager(object):
def get_connection(self, account_path):
return self._connections_per_account[account_path]
- def get_connections(self):
- return self._connections_per_account.values()
-
- connections = property(get_connections)
+ def get_connections_per_account(self):
+ return self._connections_per_account
_connection_manager = None