From c5bb3dc8ae8a098013dae610fbc08230454a64af Mon Sep 17 00:00:00 2001 From: Morgan Collett Date: Fri, 16 Nov 2007 13:43:23 +0000 Subject: #4920: Replace % with , to not make logger cry --- 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) -- cgit v0.9.1