From 7846e40608be39369c43934646d120f4f79ebd17 Mon Sep 17 00:00:00 2001 From: Christopher Allan Webber Date: Thu, 24 Mar 2011 19:06:31 -0500 Subject: [PATCH] Commenting out beaker till we start using it :) --- mediagoblin/app.py | 5 ++++- 1 file changed, 4 insertions(+), 1 deletion(-) diff --git a/mediagoblin/app.py b/mediagoblin/app.py index 1ae01686..98f8bc1d 100644 --- a/mediagoblin/app.py +++ b/mediagoblin/app.py @@ -59,7 +59,10 @@ class MediagoblinApp(object): request.app = self request.template_env = self.template_env request.urlgen = routes.URLGenerator(self.routing, environ) - request.session = request.environ['beaker.session'] + + # Do we really want to load this via middleware? Maybe? + # let's comment it out till we start using it :) + #request.session = request.environ['beaker.session'] return controller(request)(environ, start_response)