summaryrefslogtreecommitdiff
path: root/poezio
diff options
context:
space:
mode:
authormathieui <mathieui@mathieui.net>2017-10-14 16:33:24 +0200
committermathieui <mathieui@mathieui.net>2017-10-14 16:33:24 +0200
commit514434f4465c45b151c5eb90fb6fe7ba0105d989 (patch)
tree3276e24f8023ca914255c72fed76a3831c22516e /poezio
parent9d261c902f075b7a8bdab26f8384942ff7f949be (diff)
downloadpoezio-514434f4465c45b151c5eb90fb6fe7ba0105d989.tar.gz
poezio-514434f4465c45b151c5eb90fb6fe7ba0105d989.tar.bz2
poezio-514434f4465c45b151c5eb90fb6fe7ba0105d989.tar.xz
poezio-514434f4465c45b151c5eb90fb6fe7ba0105d989.zip
Make remaining log.error/debug lazy
Diffstat (limited to 'poezio')
-rw-r--r--poezio/core/core.py2
-rw-r--r--poezio/user.py2
2 files changed, 2 insertions, 2 deletions
diff --git a/poezio/core/core.py b/poezio/core/core.py
index ad2fe8ab..33bbbc54 100644
--- a/poezio/core/core.py
+++ b/poezio/core/core.py
@@ -553,7 +553,7 @@ class Core(object):
self.xmpp.plugin['xep_0012'].begin_idle(jid=self.xmpp.boundjid)
def exit(self, event=None):
- log.debug("exit(%s)" % (event,))
+ log.debug("exit(%s)", event)
asyncio.get_event_loop().stop()
def on_exception(self, typ, value, trace):
diff --git a/poezio/user.py b/poezio/user.py
index 45af17b4..0cf32f79 100644
--- a/poezio/user.py
+++ b/poezio/user.py
@@ -68,7 +68,7 @@ class User(object):
def change_color(self, color_name, deterministic=False):
color = xhtml.colors.get(color_name)
if color == None:
- log.error('Unknown color "%s"' % color_name)
+ log.error('Unknown color "%s"', color_name)
if deterministic:
self.set_deterministic_color()
else: