Web   ·   Wiki   ·   Activities   ·   Blog   ·   Lists   ·   Chat   ·   Meeting   ·   Bugs   ·   Git   ·   Translate   ·   Archive   ·   People   ·   Donate
summaryrefslogtreecommitdiffstats
diff options
context:
space:
mode:
authorMorgan Collett <morgan.collett@gmail.com>2007-11-16 13:43:23 (GMT)
committer Morgan Collett <morgan.collett@gmail.com>2007-11-16 13:43:23 (GMT)
commitc5bb3dc8ae8a098013dae610fbc08230454a64af (patch)
tree5127a50294bcf2beb72e62aadffd2a5f21fc5d89
parent7d336f7d01b04833dd8ed5f353648027f061faa6 (diff)
#4920: Replace % with , to not make logger cry
-rw-r--r--NEWS2
-rw-r--r--src/activity.py2
2 files changed, 3 insertions, 1 deletions
diff --git a/NEWS b/NEWS
index 909c17c..4dc1986 100644
--- a/NEWS
+++ b/NEWS
@@ -1,3 +1,5 @@
+* #4920: Make logging more robust in BuddyHandleJoined (morgs)
+
Snapshot 128c59c612
* #4936: Enable SSL so we can use DEFLATE compression (robot101)
diff --git a/src/activity.py b/src/activity.py
index 6919af0..a7052f2 100644
--- a/src/activity.py
+++ b/src/activity.py
@@ -356,7 +356,7 @@ class Activity(ExportedGObject):
buddy_path -- DBUS path to buddy object
handle -- buddy handle in this activity
"""
- _logger.debug('BuddyHandleJoined: %s (handle %u)' %
+ _logger.debug('BuddyHandleJoined: %s (handle %u)',
(buddy_path, handle))
self.BuddyJoined(buddy_path)