services/presence/server_plugin: fix logging of join/share error

This commit is contained in:
Simon McVittie 2007-05-24 18:13:18 +01:00
parent 7b20bacdf5
commit b96de811d3

View File

@ -533,7 +533,7 @@ class ServerPlugin(gobject.GObject):
def _join_error_cb(self, activity_id, signal, userdata, where, err): def _join_error_cb(self, activity_id, signal, userdata, where, err):
e = Exception("Error joining/sharing activity %s: (%s): %s" e = Exception("Error joining/sharing activity %s: (%s): %s"
% (activity_id, err)) % (activity_id, where, err))
_logger.debug('%s', e) _logger.debug('%s', e)
self.emit(signal, activity_id, None, e, userdata) self.emit(signal, activity_id, None, e, userdata)