diff options
author | Aamir Khan <syst3m.w0rm@gmail.com> | 2012-08-09 19:47:56 +0530 |
---|---|---|
committer | Aamir Khan <syst3m.w0rm@gmail.com> | 2012-08-09 19:47:56 +0530 |
commit | 7b8195ee07cc0d9b7076040745424032d5b906b7 (patch) | |
tree | 29bb82a6577799e41d4a414c3c0f1386387f3b75 /hyperkitty/urls.py | |
parent | 74444def1e1d726b8415b2b8b7f0915cde48ff8f (diff) | |
download | hyperkitty-7b8195ee07cc0d9b7076040745424032d5b906b7.tar.gz hyperkitty-7b8195ee07cc0d9b7076040745424032d5b906b7.tar.xz hyperkitty-7b8195ee07cc0d9b7076040745424032d5b906b7.zip |
Issues #18: Fix broken links because URLs were hard coded
Diffstat (limited to 'hyperkitty/urls.py')
-rw-r--r-- | hyperkitty/urls.py | 2 |
1 files changed, 1 insertions, 1 deletions
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<mlist_fqdn>.*@.*)/(?P<threadid>.+)/$', - 'thread.thread_index'), + 'thread.thread_index', name='thread'), # Lists |