Web   ·   Wiki   ·   Activities   ·   Blog   ·   Lists   ·   Chat   ·   Meeting   ·   Bugs   ·   Git   ·   Translate   ·   Archive   ·   People   ·   Donate
summaryrefslogtreecommitdiffstats
path: root/src/jarabe/frame/frame.py
diff options
context:
space:
mode:
authorSascha Silbe <sascha@silbe.org>2009-08-19 17:37:40 (GMT)
committer Sascha Silbe <sascha@silbe.org>2009-08-24 18:47:16 (GMT)
commit313303aa93371463fcc184d637d7637183418833 (patch)
treebeb6f282a9bbbb0037007a0d9095e35748a04e97 /src/jarabe/frame/frame.py
parentc2620c745dc54cbf4d44846574f30652e812c2aa (diff)
let the logger do the formatting
Diffstat (limited to 'src/jarabe/frame/frame.py')
-rw-r--r--src/jarabe/frame/frame.py4
1 files changed, 2 insertions, 2 deletions
diff --git a/src/jarabe/frame/frame.py b/src/jarabe/frame/frame.py
index 0bb8d92..1e02fc8 100644
--- a/src/jarabe/frame/frame.py
+++ b/src/jarabe/frame/frame.py
@@ -318,7 +318,7 @@ class Frame(object):
def remove_notification(self, icon):
if icon not in self._notif_by_icon:
- logging.debug('icon %r not in list of notifications.' % icon)
+ logging.debug('icon %r not in list of notifications.', icon)
return
window = self._notif_by_icon[icon]
@@ -326,7 +326,7 @@ class Frame(object):
del self._notif_by_icon[icon]
def __notification_received_cb(self, **kwargs):
- logging.debug('__notification_received_cb %r' % kwargs)
+ logging.debug('__notification_received_cb %r', kwargs)
icon = NotificationIcon()
hints = kwargs['hints']