Skip to content

Commit d40a5ac

Browse files
committed
Removed some regex unicode flags.
- Legacy-Id: 16321
1 parent 318bd0d commit d40a5ac

1 file changed

Lines changed: 3 additions & 2 deletions

File tree

ietf/doc/urls.py

Lines changed: 3 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -1,3 +1,4 @@
1+
# Copyright The IETF Trust 2009-2019, All Rights Reserved
12
# Copyright (C) 2009 Nokia Corporation and/or its subsidiary(-ies).
23
# All rights reserved. Contact: Pasi Eronen <pasi.eronen@nokia.com>
34
#
@@ -47,8 +48,8 @@
4748
url(r'^$', views_search.search),
4849
url(r'^search/?$', views_search.search),
4950
url(r'^in-last-call/?$', views_search.drafts_in_last_call),
50-
url(r'^ad/(?P<name>[^/]+)/?$(?u)', views_search.docs_for_ad),
51-
url(r'^ad2/(?P<name>[\w.-]+)/$(?u)', RedirectView.as_view(url='/doc/ad/%(name)s/', permanent=True)),
51+
url(r'^ad/(?P<name>[^/]+)/?$', views_search.docs_for_ad),
52+
url(r'^ad2/(?P<name>[\w.-]+)/$', RedirectView.as_view(url='/doc/ad/%(name)s/', permanent=True)),
5253
url(r'^rfc-status-changes/?$', views_status_change.rfc_status_changes),
5354
url(r'^start-rfc-status-change/(?:%(name)s/)?$' % settings.URL_REGEXPS, views_status_change.start_rfc_status_change),
5455
url(r'^iesg/?$', views_search.drafts_in_iesg_process),

0 commit comments

Comments
 (0)