aboutsummaryrefslogtreecommitdiffstats
diff options
context:
space:
mode:
authorChristopher Allan Webber <cwebber@dustycloud.org>2011-04-03 16:37:36 -0500
committerChristopher Allan Webber <cwebber@dustycloud.org>2011-04-03 16:37:36 -0500
commit14ba9383de2ff03f2af9bf0595c7b8f1fd43ac7a (patch)
tree1eee3b0827c01a1cf41505db0d62cfbbd609874f
parent51479a1d22a15744fecb8eddb367ab1a8dce8328 (diff)
downloadmediagoblin-14ba9383de2ff03f2af9bf0595c7b8f1fd43ac7a.tar.lz
mediagoblin-14ba9383de2ff03f2af9bf0595c7b8f1fd43ac7a.tar.xz
mediagoblin-14ba9383de2ff03f2af9bf0595c7b8f1fd43ac7a.zip
Use beaker from middleware, it's official.
-rw-r--r--mediagoblin/app.py3
1 files changed, 1 insertions, 2 deletions
diff --git a/mediagoblin/app.py b/mediagoblin/app.py
index 632a0c25..cc8cec31 100644
--- a/mediagoblin/app.py
+++ b/mediagoblin/app.py
@@ -81,8 +81,7 @@ class MediagoblinApp(object):
request.db = self.db
# 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']
+ request.session = request.environ['beaker.session']
return controller(request)(environ, start_response)