Skip to content

Commit 80a19d6

Browse files
committed
Change the development url patterns to match the name change of static/secr to static/secretariat.
- Legacy-Id: 6169
1 parent d8074d3 commit 80a19d6

1 file changed

Lines changed: 1 addition & 1 deletion

File tree

ietf/urls.py

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -79,7 +79,7 @@
7979
if settings.SERVER_MODE in ('development', 'test'):
8080
urlpatterns += patterns('',
8181
(r'^(?P<path>(?:images|css|js)/.*)$', 'django.views.static.serve', {'document_root': settings.MEDIA_ROOT}),
82-
(r'^(?P<path>secr/(img|css|js)/.*)$', 'django.views.static.serve', {'document_root': settings.MEDIA_ROOT}),
82+
(r'^(?P<path>secretariat/(img|css|js)/.*)$', 'django.views.static.serve', {'document_root': settings.MEDIA_ROOT}),
8383
(r'^(?P<path>robots\.txt)$', 'django.views.static.serve', {'document_root': settings.MEDIA_ROOT+"dev/"}),
8484
(r'^_test500/$', lambda x: None),
8585
)

0 commit comments

Comments
 (0)