summaryrefslogtreecommitdiff
diff options
context:
space:
mode:
authorChris McDonough <chrism@plope.com>2012-08-06 11:10:26 -0400
committerChris McDonough <chrism@plope.com>2012-08-06 11:10:26 -0400
commitae2fd21399de2eed6ff60f32c34e304ec017b4f4 (patch)
treefd2168301fe8a8c0875b95067adc740798a5ef64
parent5664c428e22d73f8b4315b678588150d9bb2f0f5 (diff)
parentcff71c316eb8b77b936bfc14a29d7ff9727edf70 (diff)
downloadpyramid-ae2fd21399de2eed6ff60f32c34e304ec017b4f4.tar.gz
pyramid-ae2fd21399de2eed6ff60f32c34e304ec017b4f4.tar.bz2
pyramid-ae2fd21399de2eed6ff60f32c34e304ec017b4f4.zip
Merge branch 'master' of github.com:Pylons/pyramid
-rw-r--r--docs/narr/hooks.rst2
1 files changed, 1 insertions, 1 deletions
diff --git a/docs/narr/hooks.rst b/docs/narr/hooks.rst
index 73ee655ea..2c15cd690 100644
--- a/docs/narr/hooks.rst
+++ b/docs/narr/hooks.rst
@@ -1295,7 +1295,7 @@ often a class with a constructor (``__init__``), a ``text`` method, a
class ContentTypePredicate(object):
def __init__(self, val, config):
- self.val
+ self.val = val
def text(self):
return 'content_type = %s' % (self.val,)