summaryrefslogtreecommitdiff
path: root/docs
diff options
context:
space:
mode:
Diffstat (limited to 'docs')
-rw-r--r--docs/conf.py2
-rw-r--r--docs/narr/hooks.rst2
2 files changed, 2 insertions, 2 deletions
diff --git a/docs/conf.py b/docs/conf.py
index 79d9946ad..187b1a125 100644
--- a/docs/conf.py
+++ b/docs/conf.py
@@ -80,7 +80,7 @@ copyright = '%s, Agendaless Consulting' % datetime.datetime.now().year
# other places throughout the built documents.
#
# The short X.Y version.
-version = '1.3a9'
+version = '1.3b1'
# The full version, including alpha/beta/rc tags.
release = version
diff --git a/docs/narr/hooks.rst b/docs/narr/hooks.rst
index b7f052b00..c44323201 100644
--- a/docs/narr/hooks.rst
+++ b/docs/narr/hooks.rst
@@ -776,7 +776,7 @@ as keyword arguments.
def wrapper(context, request):
matchdict = request.matchdict.copy()
matchdict.pop('action', None)
- inst = view()
+ inst = view(request)
meth = getattr(inst, attr)
return meth(**matchdict)
return wrapper