summaryrefslogtreecommitdiff
diff options
context:
space:
mode:
authorChris McDonough <chrism@plope.com>2011-07-10 00:03:28 -0400
committerChris McDonough <chrism@plope.com>2011-07-10 00:03:28 -0400
commit8cad6080cda9a72902333a70c20b58c5ea02226c (patch)
tree91d322e61756f360b3e72de990bd5c5ce7e75cee
parent8fa04b6ba5b1687e504a4b984fdd0a3e9b8279d9 (diff)
downloadpyramid-8cad6080cda9a72902333a70c20b58c5ea02226c.tar.gz
pyramid-8cad6080cda9a72902333a70c20b58c5ea02226c.tar.bz2
pyramid-8cad6080cda9a72902333a70c20b58c5ea02226c.zip
reverse position of custom decorator and http cache decorator
-rw-r--r--pyramid/config.py4
1 files changed, 2 insertions, 2 deletions
diff --git a/pyramid/config.py b/pyramid/config.py
index 607dbad38..2e018f66f 100644
--- a/pyramid/config.py
+++ b/pyramid/config.py
@@ -2939,8 +2939,8 @@ class ViewDeriver(object):
self.authdebug_view(
self.secured_view(
self.owrapped_view(
- self.decorated_view(
- self.http_cached_view(
+ self.http_cached_view(
+ self.decorated_view(
self.rendered_view(
self.mapped_view(view)))))))))