summaryrefslogtreecommitdiff
path: root/docs
diff options
context:
space:
mode:
Diffstat (limited to 'docs')
-rw-r--r--docs/setting_up.rst2
1 files changed, 1 insertions, 1 deletions
diff --git a/docs/setting_up.rst b/docs/setting_up.rst
index e93cb97..8d0f984 100644
--- a/docs/setting_up.rst
+++ b/docs/setting_up.rst
@@ -10,7 +10,7 @@ you. In Pylons, you define your routes in the ``make_map`` function in your
from routes import Mapper
map = Mapper()
- map.connect(None, "/error/{action}/{id}, controller="error")
+ map.connect(None, "/error/{action}/{id}", controller="error")
map.connect("home", "/", controller="main", action="index")
# ADD CUSTOM ROUTES HERE
map.connect(None, "/{controller}/{action}")