1 files changed, 2 insertions, 2 deletions
diff --git a/synapse/push/__init__.py b/synapse/push/__init__.py
index fd8d6d4bbd..8ddc833577 100644
--- a/synapse/push/__init__.py
+++ b/synapse/push/__init__.py
@@ -187,8 +187,8 @@ class Pusher(object):
# for sanity, we only remove the pushkey if it
# was the one we actually sent...
logger.warn(
- ("Ignoring rejected pushkey %s because we" +
- "didn't send it"), (pk,)
+ ("Ignoring rejected pushkey %s because we " +
+ "didn't send it"), pk
)
else:
logger.info(
|