diff options
author | Aurélien Bompard <aurelien@bompard.org> | 2013-02-05 04:46:04 +0100 |
---|---|---|
committer | Aurélien Bompard <aurelien@bompard.org> | 2013-02-05 04:46:04 +0100 |
commit | 6a5ffc2be512e507fac65ac9b4c5fa87b68a6c69 (patch) | |
tree | f1212c6a47f23d02a497ffabc02913f9b25900ac /hyperkitty/views/compat.py | |
parent | 0a8afb682c861c81073bd99d2e8878992137ce56 (diff) | |
download | hyperkitty-6a5ffc2be512e507fac65ac9b4c5fa87b68a6c69.tar.gz hyperkitty-6a5ffc2be512e507fac65ac9b4c5fa87b68a6c69.tar.xz hyperkitty-6a5ffc2be512e507fac65ac9b4c5fa87b68a6c69.zip |
Normalize some variable names
Diffstat (limited to 'hyperkitty/views/compat.py')
-rw-r--r-- | hyperkitty/views/compat.py | 2 |
1 files changed, 1 insertions, 1 deletions
diff --git a/hyperkitty/views/compat.py b/hyperkitty/views/compat.py index bbfa367..b8c0666 100644 --- a/hyperkitty/views/compat.py +++ b/hyperkitty/views/compat.py @@ -108,7 +108,7 @@ def message(request, list_name, year, month_name, msg_num): raise Http404("No such message in this mailing-list.") url = reverse('message_index', kwargs={ 'mlist_fqdn': mlist.name, - 'hashid': message.message_id_hash, + 'message_id': message.message_id_hash, }) #return HttpResponse(request.build_absolute_uri(url)) return HttpResponseRedirect(url) |