# HG changeset patch # User Marcin Kuzminski # Date 1275915267 -7200 # Node ID 183c064061276e91712b54bafa9f178f8f01e9a3 # Parent bd70107ef256a3bb360c79fe4446392264612f7d fixed bug in middleware config diff -r bd70107ef256 -r 183c06406127 pylons_app/config/middleware.py --- 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