summaryrefslogtreecommitdiff
path: root/index.py
diff options
context:
space:
mode:
authorRené 'Necoro' Neumann <necoro@necoro.net>2011-02-15 05:45:41 +0100
committerRené 'Necoro' Neumann <necoro@necoro.net>2011-02-15 05:45:41 +0100
commit9d1f28ab132626114450b177f6a9dd51107fe577 (patch)
tree66cf8bb1f9702e7d198eb522ecd166fc35751700 /index.py
parent2e663fa91e1f14c5406fb19fac7e6b2b8d7a64ad (diff)
downloadkosten-9d1f28ab132626114450b177f6a9dd51107fe577.tar.gz
kosten-9d1f28ab132626114450b177f6a9dd51107fe577.tar.bz2
kosten-9d1f28ab132626114450b177f6a9dd51107fe577.zip
Move the 'add from' to the correct place: ConstAdd
Diffstat (limited to 'index.py')
-rwxr-xr-xindex.py2
1 files changed, 1 insertions, 1 deletions
diff --git a/index.py b/index.py
index 2b46a35..e7687e2 100755
--- a/index.py
+++ b/index.py
@@ -13,7 +13,7 @@ urls = (
"/const/?", controller.Const,
"/const/(\d+)", controller.Const,
"/const/add/?", controller.ConstAdd,
- "/const/add/(from)/(\d+)", controller.ConstEdit,
+ "/const/add/from/(\d+)", controller.ConstAdd,
"/const/edit/(\d+)", controller.ConstEdit,
"/categories", controller.Cat,
"/(\d\d\d\d)/(\d\d?)/?", controller.Show,