[1.11.x] Refs #27025 -- Fixed "invalid escape sequence" warning in auth_tests on Python 3.6.

Backport of d4d79d0f20 from master
This commit is contained in:
Tim Graham 2017-04-02 17:17:33 -04:00
parent 233d0b238e
commit e34cce79ff
1 changed files with 1 additions and 1 deletions

View File

@ -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 + [