From 498d39927d1592423d6aeb895be1434eb09f367e Mon Sep 17 00:00:00 2001 From: Alex Gaynor Date: Sun, 17 Nov 2013 20:15:05 -0800 Subject: Fixed a typo in the docs --- docs/setting_up.rst | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) 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}") -- cgit v1.2.1