summaryrefslogtreecommitdiffstats
path: root/todolists
diff options
context:
space:
mode:
authorDan McGee <dan@archlinux.org>2012-12-31 18:04:41 +0100
committerDan McGee <dan@archlinux.org>2012-12-31 18:04:41 +0100
commit827b426b4dce6641e77dac975dae180ce6e20b0a (patch)
tree409337c2c19bed82258945bb31418eb20ed7e731 /todolists
parent95394bc4fafa9b677e8baccb8c5d41aee4bc2390 (diff)
downloadarchweb-827b426b4dce6641e77dac975dae180ce6e20b0a.tar.gz
archweb-827b426b4dce6641e77dac975dae180ce6e20b0a.tar.xz
Fix list_pkgbases view call
Signed-off-by: Dan McGee <dan@archlinux.org>
Diffstat (limited to 'todolists')
-rw-r--r--todolists/urls.py2
1 files changed, 1 insertions, 1 deletions
diff --git a/todolists/urls.py b/todolists/urls.py
index cbc9547..a4f93da 100644
--- a/todolists/urls.py
+++ b/todolists/urls.py
@@ -20,7 +20,7 @@ urlpatterns = patterns('',
(r'^(?P<slug>[-\w]+)/flag/(?P<pkg_id>\d+)/$',
permission_required('todolists.change_todolistpackage')(flag)),
(r'^(?P<slug>[-\w]+)/pkgbases/(?P<svn_root>[a-z]+)/$',
- 'list_pkgbases'),
+ list_pkgbases),
)
# vim: set ts=4 sw=4 et: