urls: Stop capturing unintended argument.
This commit is contained in:
parent
8228d1529c
commit
11e2f64d4b
1 changed files with 2 additions and 2 deletions
|
@ -37,8 +37,8 @@ urlpatterns = [
|
|||
url(r'^feeds/news/?$', feeds.PressReleaseFeed()),
|
||||
url(r'^feeds/omnibus/?$', feeds.OmnibusFeed()),
|
||||
url(r'^feeds/?$', feeds.view),
|
||||
url(r'^news(/|$)', include('conservancy.apps.news.urls')),
|
||||
url(r'^blog(/|$)', include('conservancy.apps.blog.urls')),
|
||||
url(r'^news(?:/|$)', include('conservancy.apps.news.urls')),
|
||||
url(r'^blog(?:/|$)', include('conservancy.apps.blog.urls')),
|
||||
# formerly static templated things... (dirs with templates)
|
||||
url(r'^error/(40[134]|500)(?:/index\.html|/|)$', static_views.handler),
|
||||
url(r'^error', static_views.index),
|
||||
|
|
Loading…
Reference in a new issue