summaryrefslogtreecommitdiff
path: root/index.py
diff options
context:
space:
mode:
Diffstat (limited to 'index.py')
-rwxr-xr-xindex.py4
1 files changed, 2 insertions, 2 deletions
diff --git a/index.py b/index.py
index 5db7b25..b91418d 100755
--- a/index.py
+++ b/index.py
@@ -7,8 +7,8 @@ import controller
# URL Mappings
#
urls = (
- "/r/(.*)", "controller.Redirect",
- "/(.*)", "controller.Page"
+ "/r/(.*)", controller.Redirect,
+ "/(.*)", controller.Page
)
#