services/presence/presenceservice: fix broken syntax

This commit is contained in:
Simon McVittie 2007-05-24 14:25:40 +01:00
parent 4e188059e3
commit e7f10dd2aa

View File

@ -191,7 +191,7 @@ class PresenceService(ExportedGObject):
if buddy: if buddy:
buddy.set_properties(properties) buddy.set_properties(properties)
_logger.debug("Buddy %s properties updated: %s", buddy.props.nick, _logger.debug("Buddy %s properties updated: %s", buddy.props.nick,
properties.keys())) properties.keys())
def _new_activity(self, activity_id, tp): def _new_activity(self, activity_id, tp):
try: try:
@ -408,11 +408,11 @@ class PresenceService(ExportedGObject):
if valid: if valid:
self.ActivityAppeared(activity.object_path()) self.ActivityAppeared(activity.object_path())
_logger.debug("New Activity: %s (%s)", activity.props.name, _logger.debug("New Activity: %s (%s)", activity.props.name,
activity.props.id)) activity.props.id)
else: else:
self.ActivityDisappeared(activity.object_path()) self.ActivityDisappeared(activity.object_path())
_logger.debug("Activity disappeared: %s (%s)", activity.props.name, _logger.debug("Activity disappeared: %s (%s)", activity.props.name,
activity.props.id)) activity.props.id)
def _activity_properties_changed(self, tp, act_id, props): def _activity_properties_changed(self, tp, act_id, props):
activity = self._activities.get(act_id) activity = self._activities.get(act_id)