diff options
| author | Tim Graham <timograham@gmail.com> | 2017-04-02 17:17:33 -0400 |
|---|---|---|
| committer | Tim Graham <timograham@gmail.com> | 2017-04-02 20:02:55 -0400 |
| commit | d4d79d0f200357b28419203557cc61c8168316ab (patch) | |
| tree | 72a5147da1761d7b8f05b87b12e6de2e04b296b7 | |
| parent | 898e623db0fa6b2cf0b187a3db78b675cde111cf (diff) | |
Refs #27025 -- Fixed "invalid escape sequence" warning in auth_tests on Python 3.6.
| -rw-r--r-- | tests/auth_tests/urls.py | 2 |
1 files changed, 1 insertions, 1 deletions
diff --git a/tests/auth_tests/urls.py b/tests/auth_tests/urls.py index 19538a5912..cd21e6f69d 100644 --- a/tests/auth_tests/urls.py +++ b/tests/auth_tests/urls.py @@ -62,7 +62,7 @@ def userpage(request): pass -uid_token = '(?P<uidb64>[0-9A-Za-z_\-]+)/(?P<token>[0-9A-Za-z]{1,13}-[0-9A-Za-z]{1,20})' +uid_token = r'(?P<uidb64>[0-9A-Za-z_\-]+)/(?P<token>[0-9A-Za-z]{1,13}-[0-9A-Za-z]{1,20})' # special urls for auth test cases urlpatterns = auth_urlpatterns + [ |
