Web   ·   Wiki   ·   Activities   ·   Blog   ·   Lists   ·   Chat   ·   Meeting   ·   Bugs   ·   Git   ·   Translate   ·   Archive   ·   People   ·   Donate
summaryrefslogtreecommitdiffstats
path: root/collaboration
diff options
context:
space:
mode:
authorWalter Bender <walter.bender@gmail.com>2011-03-21 19:21:15 (GMT)
committer Walter Bender <walter.bender@gmail.com>2011-03-21 19:21:15 (GMT)
commit1eede14372ceaaec094c55ca01f4c8f6dbfd0ab4 (patch)
tree4e18f404b129efa0a90e6d30b2312f99e87050f7 /collaboration
parent3235189413192f2831899b6ecd3ce4edee4a38af (diff)
fix formating bugs as per #2710
Diffstat (limited to 'collaboration')
-rw-r--r--collaboration/presenceservice.py14
1 files changed, 7 insertions, 7 deletions
diff --git a/collaboration/presenceservice.py b/collaboration/presenceservice.py
index 142fc4a..33caadd 100644
--- a/collaboration/presenceservice.py
+++ b/collaboration/presenceservice.py
@@ -95,7 +95,7 @@ class PresenceService(gobject.GObject):
name = 'org.freedesktop.Telepathy.Error.NotAvailable'
if e.get_dbus_name() == name:
logging.debug("There's no shared activity with the id "
- "%s", activity_id)
+ "%s" % (activity_id))
else:
raise
else:
@@ -166,8 +166,8 @@ class PresenceService(gobject.GObject):
dbus_interface=CONNECTION)
return self.get_buddy(account_path, contact_ids[0])
- raise ValueError('Unknown buddy in connection %s with handle %d',
- tp_conn_path, handle)
+ raise ValueError('Unknown buddy in connection %s with handle %d' % \
+ (tp_conn_path, handle))
def get_owner(self):
"""Retrieves the laptop Buddy object."""
@@ -203,8 +203,8 @@ class PresenceService(gobject.GObject):
properties['private'] = private
if self._activity_cache is not None:
- raise ValueError('Activity %s is already tracked',
- activity.get_id())
+ raise ValueError('Activity %s is already tracked' % \
+ (activity.get_id()))
connection_manager = get_connection_manager()
account_path, connection = \
@@ -220,8 +220,8 @@ class PresenceService(gobject.GObject):
self._activity_cache = shared_activity
if shared_activity.props.joined:
- raise RuntimeError('Activity %s is already shared.' %
- activity.props.id)
+ raise RuntimeError('Activity %s is already shared.' % \
+ (activity.props.id))
shared_activity.share(self.__share_activity_cb,
self.__share_activity_error_cb)