diff options
author | Amber Brown <hawkowl@atleastfornow.net> | 2018-05-24 13:00:20 -0500 |
---|---|---|
committer | GitHub <noreply@github.com> | 2018-05-24 13:00:20 -0500 |
commit | c4fb15a06c3ade339ec175b97b345868d119f4fd (patch) | |
tree | 06e6f6da094e7a8c7169352cfdafce81ac17456c /synapse/http/site.py | |
parent | Merge pull request #3247 from NotAFile/py3-misc (diff) | |
parent | use repr, not str (diff) | |
download | synapse-c4fb15a06c3ade339ec175b97b345868d119f4fd.tar.xz |
Merge pull request #3246 from NotAFile/py3-repr-string
use repr, not str
Diffstat (limited to 'synapse/http/site.py')
-rw-r--r-- | synapse/http/site.py | 2 |
1 files changed, 1 insertions, 1 deletions
diff --git a/synapse/http/site.py b/synapse/http/site.py index b608504225..23c1b76922 100644 --- a/synapse/http/site.py +++ b/synapse/http/site.py @@ -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, |