diff options
author | David Baker <dave@matrix.org> | 2017-03-08 11:46:22 +0000 |
---|---|---|
committer | David Baker <dave@matrix.org> | 2017-03-08 11:46:22 +0000 |
commit | 0e0aee25c469fe3ba95d7410da670bc3fd73b510 (patch) | |
tree | cc4a71b48d2ca4fa1da4441355d60b858cb677be /synapse/handlers/auth.py | |
parent | Typos (diff) | |
download | synapse-0e0aee25c469fe3ba95d7410da670bc3fd73b510.tar.xz |
Fix log line
Diffstat (limited to 'synapse/handlers/auth.py')
-rw-r--r-- | synapse/handlers/auth.py | 2 |
1 files changed, 1 insertions, 1 deletions
diff --git a/synapse/handlers/auth.py b/synapse/handlers/auth.py index b273a4bee7..e7a1bb7246 100644 --- a/synapse/handlers/auth.py +++ b/synapse/handlers/auth.py @@ -331,7 +331,7 @@ class AuthHandler(BaseHandler): identity_handler = self.hs.get_handlers().identity_handler - logger.info("Getting validated threepid. threepidcreds: %r" % (threepid_creds,)) + logger.info("Getting validated threepid. threepidcreds: %r", (threepid_creds,)) threepid = yield identity_handler.threepid_from_creds(threepid_creds) if not threepid: |