Web   ·   Wiki   ·   Activities   ·   Blog   ·   Lists   ·   Chat   ·   Meeting   ·   Bugs   ·   Git   ·   Translate   ·   Archive   ·   People   ·   Donate
summaryrefslogtreecommitdiffstats
path: root/shareable_activity.py
diff options
context:
space:
mode:
authorGary Martin <gary@garycmartin.com>2010-09-12 16:48:28 (GMT)
committer Gary Martin <gary@garycmartin.com>2010-09-12 16:48:28 (GMT)
commit58a1330dbf03e8191137480cc7352338f438a365 (patch)
treef160fa3e2b47e5917f0d9b47cd73cbc4486c2dfd /shareable_activity.py
parent3417aa1a76117c7adb93865a6d0195b64824e44d (diff)
Patch from Tomeu to remove use of private member that has been removed in 0.90 SL#2245.
Diffstat (limited to 'shareable_activity.py')
-rw-r--r--shareable_activity.py2
1 files changed, 1 insertions, 1 deletions
diff --git a/shareable_activity.py b/shareable_activity.py
index 0626f9d..c418666 100644
--- a/shareable_activity.py
+++ b/shareable_activity.py
@@ -52,7 +52,7 @@ class ShareableActivity(activity.Activity):
self._pservice = presenceservice.get_instance()
self._owner = self._pservice.get_owner()
- self._owner_id = str(self._owner._properties['nick'])
+ self._owner_id = str(self._owner.props.nick)
self._service_path = kwargs.get('service_path',
self._generate_service_path())