Web   ·   Wiki   ·   Activities   ·   Blog   ·   Lists   ·   Chat   ·   Meeting   ·   Bugs   ·   Git   ·   Translate   ·   Archive   ·   People   ·   Donate
summaryrefslogtreecommitdiffstats
path: root/services
diff options
context:
space:
mode:
authorSimon McVittie <simon.mcvittie@collabora.co.uk>2007-05-24 17:13:18 (GMT)
committer Simon McVittie <simon.mcvittie@collabora.co.uk>2007-05-24 17:59:32 (GMT)
commitb96de811d33e38106cad0e58172de5dcbc54453b (patch)
tree58cf36ebb2bf415d8b2bb222018488030723a3d1 /services
parent7b20bacdf5771597ea061386ef488d12807435dd (diff)
services/presence/server_plugin: fix logging of join/share error
Diffstat (limited to 'services')
-rw-r--r--services/presence/server_plugin.py2
1 files changed, 1 insertions, 1 deletions
diff --git a/services/presence/server_plugin.py b/services/presence/server_plugin.py
index 036cc2e..e6fd395 100644
--- a/services/presence/server_plugin.py
+++ b/services/presence/server_plugin.py
@@ -533,7 +533,7 @@ class ServerPlugin(gobject.GObject):
def _join_error_cb(self, activity_id, signal, userdata, where, err):
e = Exception("Error joining/sharing activity %s: (%s): %s"
- % (activity_id, err))
+ % (activity_id, where, err))
_logger.debug('%s', e)
self.emit(signal, activity_id, None, e, userdata)