~kernevil/ubuntu/saucy/pylons/fix-useless-import

« back to all changes in this revision

Viewing changes to tests/test_webapps/filestotest/middleware_mako.py

  • Committer: Bazaar Package Importer
  • Author(s): Piotr Ożarowski
  • Date: 2011-08-02 21:17:36 UTC
  • mfrom: (1.2.3 upstream) (10.1.3 experimental)
  • Revision ID: james.westby@ubuntu.com-20110802211736-ejqil9b3yqgxt6lr
Tags: 1.0-2
* Add ipython_0.11_compatibility patch (thanks to Julian Taylor)
* Add build-arch and build-indep targets to debian/rules 
* Switch from dh_pysupport to dh_python2
* Source format changed to 3.0 (quilt)
* Standards-Version bumped to 3.9.2 (no changes needed)

Show diffs side-by-side

added added

removed removed

Lines of Context:
40
40
    app = PylonsApp(config=config)
41
41
 
42
42
    # Routing/Session/Cache Middleware
43
 
    app = RoutesMiddleware(app, config['routes.map'])
 
43
    app = RoutesMiddleware(app, config['routes.map'], singleton=False)
44
44
    app = SessionMiddleware(app, config)
45
45
 
46
46
    # CUSTOM MIDDLEWARE HERE (filtered by error handling middlewares)