diff options
| author | Chris McDonough <chrism@plope.com> | 2010-12-15 19:08:23 -0500 |
|---|---|---|
| committer | Chris McDonough <chrism@plope.com> | 2010-12-15 19:08:23 -0500 |
| commit | 55e60cf78d6af4fcf99e546f779c31a18ea0bfac (patch) | |
| tree | 0cbfca4d41682f08569ece40959b2bbdc646e522 /docs/tutorials/wiki/src/models/setup.py | |
| parent | 86a304c7742862e9bf0185c92f5d11ee33ce01c7 (diff) | |
| download | pyramid-55e60cf78d6af4fcf99e546f779c31a18ea0bfac.tar.gz pyramid-55e60cf78d6af4fcf99e546f779c31a18ea0bfac.tar.bz2 pyramid-55e60cf78d6af4fcf99e546f779c31a18ea0bfac.zip | |
- 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``.
Diffstat (limited to 'docs/tutorials/wiki/src/models/setup.py')
| -rw-r--r-- | docs/tutorials/wiki/src/models/setup.py | 7 |
1 files changed, 4 insertions, 3 deletions
diff --git a/docs/tutorials/wiki/src/models/setup.py b/docs/tutorials/wiki/src/models/setup.py index 0ef8f137c..5034a3989 100644 --- a/docs/tutorials/wiki/src/models/setup.py +++ b/docs/tutorials/wiki/src/models/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'], ) |
