summary refs log tree commit diff
diff options
context:
space:
mode:
authorAmber Brown <hawkowl@atleastfornow.net>2018-09-14 03:45:34 +1000
committerAmber Brown <hawkowl@atleastfornow.net>2018-09-14 03:45:34 +1000
commit7c33ab76da91a747fd442f65c9bfe187a81864f7 (patch)
treecfb7d3e4d6b2c5b347a58ea5344b9076e4df6e65
parentwe do that higher up (diff)
downloadsynapse-7c33ab76da91a747fd442f65c9bfe187a81864f7.tar.xz
redact better
-rw-r--r--synapse/http/__init__.py4
1 files changed, 2 insertions, 2 deletions
diff --git a/synapse/http/__init__.py b/synapse/http/__init__.py

index 58ef8d3ce4..a3f9e4f67c 100644 --- a/synapse/http/__init__.py +++ b/synapse/http/__init__.py
@@ -38,12 +38,12 @@ def cancelled_to_request_timed_out_error(value, timeout): return value -ACCESS_TOKEN_RE = re.compile(br'(\?.*access(_|%5[Ff])token=)[^&]*(.*)$') +ACCESS_TOKEN_RE = re.compile(r'(\?.*access(_|%5[Ff])token=)[^&]*(.*)$') def redact_uri(uri): """Strips access tokens from the uri replaces with <redacted>""" return ACCESS_TOKEN_RE.sub( - br'\1<redacted>\3', + r'\1<redacted>\3', uri )