From 55e60cf78d6af4fcf99e546f779c31a18ea0bfac Mon Sep 17 00:00:00 2001 From: Chris McDonough Date: Wed, 15 Dec 2010 19:08:23 -0500 Subject: - If you followed it to-the-letter, the ZODB+Traversal Wiki tutorial would instruct you to run a test which would fail because the view callable generated by the ``pyramid_zodb`` tutorial used a one-arg view callable, but the test in the sample code used a two-arg call. - Updated ZODB+Traversal tutorial setup.py of all steps to match what's generated by ``pyramid_zodb``. --- docs/tutorials/wiki/src/views/setup.py | 7 ++++--- 1 file changed, 4 insertions(+), 3 deletions(-) (limited to 'docs/tutorials/wiki/src/views/setup.py') diff --git a/docs/tutorials/wiki/src/views/setup.py b/docs/tutorials/wiki/src/views/setup.py index 0ef8f137c..5034a3989 100644 --- a/docs/tutorials/wiki/src/views/setup.py +++ b/docs/tutorials/wiki/src/views/setup.py @@ -8,11 +8,11 @@ CHANGES = open(os.path.join(here, 'CHANGES.txt')).read() requires = [ 'pyramid', - 'docutils', - 'ZODB3', 'repoze.zodbconn', 'repoze.tm', + 'ZODB3', 'WebError', + 'docutils', ] setup(name='tutorial', @@ -39,5 +39,6 @@ setup(name='tutorial', entry_points = """\ [paste.app_factory] main = tutorial:main - """ + """, + paster_plugins=['pyramid'], ) -- cgit v1.2.3