Don't require trailing / on RSS feed URLs.
This commit is contained in:
parent
888028f64b
commit
9b59b9efe3
1 changed files with 1 additions and 1 deletions
|
@ -5,7 +5,7 @@ handler404 = 'modpythoncustom.view404'
|
|||
|
||||
urlpatterns = patterns('',
|
||||
(r'^$', 'conservancy.frontpage.view'),
|
||||
(r'^feeds/(?P<url>.*)/$', 'django.contrib.syndication.views.feed',
|
||||
(r'^feeds/(?P<url>.*)/?$', 'django.contrib.syndication.views.feed',
|
||||
{'feed_dict': feed_dict}),
|
||||
(r'^feeds/$', 'conservancy.feeds.view'),
|
||||
(r'^news/', include('conservancy.apps.news.urls')),
|
||||
|
|
Loading…
Reference in a new issue