From 59d9645f33fd8d707a43545aca448604a806af71 Mon Sep 17 00:00:00 2001 From: mdipierro Date: Thu, 13 Sep 2012 09:28:44 -0500 Subject: [PATCH] fixed routes.examples.py --- VERSION | 2 +- routes.example.py | 4 ++-- 2 files changed, 3 insertions(+), 3 deletions(-) diff --git a/VERSION b/VERSION index f8c18f07..9528f6a7 100644 --- a/VERSION +++ b/VERSION @@ -1 +1 @@ -Version 2.0.8 (2012-09-13 09:08:09) stable +Version 2.0.8 (2012-09-13 09:28:40) stable diff --git a/routes.example.py b/routes.example.py index e65f19ad..3fb1f1f8 100644 --- a/routes.example.py +++ b/routes.example.py @@ -57,9 +57,9 @@ routes_out = ( # do not reroute admin unless you want to disable it ('/admin/$anything', BASE+'/admin/?$anything'), # do not reroute appadmin unless you want to disable it - ('/$app/appadmin/$anything',BASE+'/$app/appadmin/?$anything'), + ('/$app/appadmin/$anything',BASE+'/$app/appadmin/$anything'), # do not reroute static files - ('/$app/static/$anything', BASE+'/$app/static/?$anything'), + ('/$app/static/$anything', BASE+'/$app/static/$anything'), # do other stuff (r'.*http://otherdomain.com.* /app/ctr(?P.*)', r'\g'), (r'/app(?P.*)', r'\g'),