From 46eccc677d8a4995ac08023b1b7c41b79c171fed Mon Sep 17 00:00:00 2001 From: Chris McDonough Date: Sun, 26 Feb 2012 14:58:14 -0500 Subject: fix instance creation --- docs/narr/hooks.rst | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) (limited to 'docs') 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 -- cgit v1.2.3 From cf973d67fcae67f517d407a3f1bc3cb191def5b6 Mon Sep 17 00:00:00 2001 From: Chris McDonough Date: Sun, 26 Feb 2012 15:59:20 -0500 Subject: prep for 1.3b1 --- docs/conf.py | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) (limited to 'docs') 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 -- cgit v1.2.3