diff options
author | Dan McGee <dan@archlinux.org> | 2011-12-22 17:22:25 +0100 |
---|---|---|
committer | Dan McGee <dan@archlinux.org> | 2011-12-22 17:22:25 +0100 |
commit | ab97f5cdea4d54bbb8dff34b0333f5b965052e91 (patch) | |
tree | ba8f9a8021845d2a0fb275c4f5fcffdcc64eee75 | |
parent | 56af1e4f50587333da4e8c38800be8f720af98b7 (diff) | |
download | archweb-ab97f5cdea4d54bbb8dff34b0333f5b965052e91.tar.gz archweb-ab97f5cdea4d54bbb8dff34b0333f5b965052e91.tar.xz |
Fix mismatched URL keyword arg
Signed-off-by: Dan McGee <dan@archlinux.org>
-rw-r--r-- | devel/urls.py | 4 |
1 files changed, 2 insertions, 2 deletions
diff --git a/devel/urls.py b/devel/urls.py index bc3bcac..07cb321 100644 --- a/devel/urls.py +++ b/devel/urls.py @@ -7,8 +7,8 @@ urlpatterns = patterns('devel.views', (r'^$', 'index', {}, 'devel-index'), (r'^newuser/$', 'new_user_form'), (r'^profile/$', 'change_profile'), - (r'^reports/(?P<report>.*)/(?P<username>.*)/$', 'report'), - (r'^reports/(?P<report>.*)/$', 'report'), + (r'^reports/(?P<report_name>.*)/(?P<username>.*)/$', 'report'), + (r'^reports/(?P<report_name>.*)/$', 'report'), ) # vim: set ts=4 sw=4 et: |