From 812cd8bc9a7457f9369cbf05083648da6638f0fe Mon Sep 17 00:00:00 2001 From: Pierre-Yves Chibon Date: Sat, 31 Mar 2012 18:28:59 +0200 Subject: Implement the new identifiers (I've removed all the dashes in the identifiers) --- urls.py | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) (limited to 'urls.py') diff --git a/urls.py b/urls.py index 65ac15a..845474d 100644 --- a/urls.py +++ b/urls.py @@ -21,7 +21,7 @@ urlpatterns = patterns('', url(r'^archives/(?P.*@.*)/$', 'views.pages.archives'), url(r'^archives/(?P.*@.*)$', 'views.pages.archives'), # The thread view - url(r'^thread/(?P.*@.*)/(?P\d+)$', 'views.pages.thread'), + url(r'^thread/(?P.*@.*)/(?P.+)$', 'views.pages.thread'), # This will be the new recent page url(r'^list$', 'views.pages.index'), url(r'^list/$', 'views.pages.index'), -- cgit