diff options
| author | Chris McDonough <chrism@plope.com> | 2011-08-13 01:00:39 -0400 |
|---|---|---|
| committer | Chris McDonough <chrism@plope.com> | 2011-08-13 01:00:39 -0400 |
| commit | 391402e63c1257ede0069f220ed5a1cca1b94a9b (patch) | |
| tree | 014d867eff43e5f18b1723ce7d846c87c1c2e202 /docs/tutorials/wiki2/src/views/setup.py | |
| parent | dd25a5afd44d3fdc89782d232dfe818245e496cd (diff) | |
| download | pyramid-391402e63c1257ede0069f220ed5a1cca1b94a9b.tar.gz pyramid-391402e63c1257ede0069f220ed5a1cca1b94a9b.tar.bz2 pyramid-391402e63c1257ede0069f220ed5a1cca1b94a9b.zip | |
- Projects created via a scaffold no longer depend on the ``WebError``
package at all; configuration in the ``production.ini`` file which used to
require its ``error_catcher`` middleware has been removed. Configuring
error catching / email sending is now the domain of the ``pyramid_exclog``
package (see https://docs.pylonsproject.org/projects/pyramid_exclog/dev/).
Diffstat (limited to 'docs/tutorials/wiki2/src/views/setup.py')
| -rw-r--r-- | docs/tutorials/wiki2/src/views/setup.py | 4 |
1 files changed, 2 insertions, 2 deletions
diff --git a/docs/tutorials/wiki2/src/views/setup.py b/docs/tutorials/wiki2/src/views/setup.py index ae9869d50..785d61326 100644 --- a/docs/tutorials/wiki2/src/views/setup.py +++ b/docs/tutorials/wiki2/src/views/setup.py @@ -11,9 +11,9 @@ requires = [ 'pyramid', 'SQLAlchemy', 'transaction', - 'repoze.tm2>=1.0b1', # default_commit_veto + 'pyramid_tm', + 'pyramid_debugtoolbar', 'zope.sqlalchemy', - 'WebError', 'docutils', ] |
