From 7b8195ee07cc0d9b7076040745424032d5b906b7 Mon Sep 17 00:00:00 2001 From: Aamir Khan Date: Thu, 9 Aug 2012 19:47:56 +0530 Subject: Issues #18: Fix broken links because URLs were hard coded --- hyperkitty/urls.py | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) (limited to 'hyperkitty/urls.py') diff --git a/hyperkitty/urls.py b/hyperkitty/urls.py index 84948ed..f680716 100644 --- a/hyperkitty/urls.py +++ b/hyperkitty/urls.py @@ -31,7 +31,7 @@ urlpatterns = patterns('hyperkitty.views', # Threads url(r'^thread/(?P.*@.*)/(?P.+)/$', - 'thread.thread_index'), + 'thread.thread_index', name='thread'), # Lists -- cgit