changeset 269:183c06406127

fixed bug in middleware config
author Marcin Kuzminski <marcin@python-works.com>
date Mon, 07 Jun 2010 14:54:27 +0200
parents bd70107ef256
children 408c66ecdad4
files pylons_app/config/middleware.py
diffstat 1 files changed, 1 insertions(+), 1 deletions(-) [+]
line wrap: on
line diff
--- a/pylons_app/config/middleware.py	Mon Jun 07 10:26:50 2010 +0200
+++ b/pylons_app/config/middleware.py	Mon Jun 07 14:54:27 2010 +0200
@@ -69,7 +69,7 @@
         static_app = StaticURLParser(config['pylons.paths']['static_files'])
         app = Cascade([static_app, app])
     
-        app.config = config
+    app.config = config
 
     return app