diff options
author | Richard van der Hoff <1389908+richvdh@users.noreply.github.com> | 2018-10-24 11:23:35 +0100 |
---|---|---|
committer | GitHub <noreply@github.com> | 2018-10-24 11:23:35 +0100 |
commit | 7328039117854d1c38ae41794a9e7efb2d23c732 (patch) | |
tree | b022d21ff97fe3b99319c433a76993d4584cdf99 /synapse/rest/client | |
parent | Merge pull request #4040 from matrix-org/erikj/states_res_v2_rebase (diff) | |
parent | Fix a number of flake8 errors (diff) | |
download | synapse-7328039117854d1c38ae41794a9e7efb2d23c732.tar.xz |
Merge pull request #4082 from matrix-org/rav/fix_pep8
Fix a number of flake8 errors
Diffstat (limited to 'synapse/rest/client')
-rw-r--r-- | synapse/rest/client/v2_alpha/auth.py | 2 |
1 files changed, 1 insertions, 1 deletions
diff --git a/synapse/rest/client/v2_alpha/auth.py b/synapse/rest/client/v2_alpha/auth.py index bd8b5f4afa..693b303881 100644 --- a/synapse/rest/client/v2_alpha/auth.py +++ b/synapse/rest/client/v2_alpha/auth.py @@ -99,7 +99,7 @@ class AuthRestServlet(RestServlet): cannot be handled in the normal flow (with requests to the same endpoint). Current use is for web fallback auth. """ - PATTERNS = client_v2_patterns("/auth/(?P<stagetype>[\w\.]*)/fallback/web") + PATTERNS = client_v2_patterns(r"/auth/(?P<stagetype>[\w\.]*)/fallback/web") def __init__(self, hs): super(AuthRestServlet, self).__init__() |