Web   ·   Wiki   ·   Activities   ·   Blog   ·   Lists   ·   Chat   ·   Meeting   ·   Bugs   ·   Git   ·   Translate   ·   Archive   ·   People   ·   Donate
summaryrefslogtreecommitdiffstats
path: root/src/sugar/presence/presenceservice.py
diff options
context:
space:
mode:
Diffstat (limited to 'src/sugar/presence/presenceservice.py')
-rw-r--r--src/sugar/presence/presenceservice.py6
1 files changed, 3 insertions, 3 deletions
diff --git a/src/sugar/presence/presenceservice.py b/src/sugar/presence/presenceservice.py
index e183446..b6c581e 100644
--- a/src/sugar/presence/presenceservice.py
+++ b/src/sugar/presence/presenceservice.py
@@ -82,7 +82,7 @@ class PresenceService(gobject.GObject):
for account_path, connection in connections_per_account.items():
if not connection.connected:
continue
- logging.debug("Calling GetActivity on %s", account_path)
+ logging.debug('Calling GetActivity on %s', account_path)
try:
room_handle = connection.connection.GetActivity(
activity_id,
@@ -172,12 +172,12 @@ class PresenceService(gobject.GObject):
def __share_activity_cb(self, activity):
"""Finish sharing the activity
"""
- self.emit("activity-shared", True, activity, None)
+ self.emit('activity-shared', True, activity, None)
def __share_activity_error_cb(self, activity, error):
"""Notify with GObject event of unsuccessful sharing of activity
"""
- self.emit("activity-shared", False, activity, error)
+ self.emit('activity-shared', False, activity, error)
def share_activity(self, activity, properties=None, private=True):
if properties is None: