Skip to content
Snippets Groups Projects
Commit b932b4ea authored by Adrian Tschira's avatar Adrian Tschira
Browse files

use repr, not str

parent 08462620
No related branches found
No related tags found
No related merge requests found
......@@ -56,7 +56,7 @@ class SynapseRequest(Request):
def __repr__(self):
# We overwrite this so that we don't log ``access_token``
return '<%s at 0x%x method=%s uri=%s clientproto=%s site=%s>' % (
return '<%s at 0x%x method=%r uri=%r clientproto=%r site=%r>' % (
self.__class__.__name__,
id(self),
self.method,
......
0% Loading or .
You are about to add 0 people to the discussion. Proceed with caution.
Finish editing this message first!
Please register or to comment