summaryrefslogtreecommitdiff
diff options
context:
space:
mode:
authorChris McDonough <chrism@plope.com>2011-08-11 23:38:34 -0400
committerChris McDonough <chrism@plope.com>2011-08-11 23:38:34 -0400
commitefd07ccf6889e965f67b1dd0ef1a09f0efacbf2f (patch)
treea87a09954031e5ca66521ce239ef81232b99b8b6
parent8cd013ed14f22b85096784ace1bac480f3825414 (diff)
downloadpyramid-efd07ccf6889e965f67b1dd0ef1a09f0efacbf2f.tar.gz
pyramid-efd07ccf6889e965f67b1dd0ef1a09f0efacbf2f.tar.bz2
pyramid-efd07ccf6889e965f67b1dd0ef1a09f0efacbf2f.zip
fix docs, scaffolds, and tutorials to use pyramid.includes
-rw-r--r--docs/narr/MyProject/development.ini2
-rw-r--r--docs/narr/project.rst12
-rw-r--r--docs/tutorials/wiki/src/authorization/development.ini4
-rw-r--r--docs/tutorials/wiki/src/authorization/production.ini2
-rw-r--r--docs/tutorials/wiki/src/basiclayout/development.ini4
-rw-r--r--docs/tutorials/wiki/src/basiclayout/production.ini2
-rw-r--r--docs/tutorials/wiki/src/models/development.ini4
-rw-r--r--docs/tutorials/wiki/src/models/production.ini2
-rw-r--r--docs/tutorials/wiki/src/tests/development.ini4
-rw-r--r--docs/tutorials/wiki/src/tests/production.ini2
-rw-r--r--docs/tutorials/wiki/src/views/development.ini4
-rw-r--r--docs/tutorials/wiki/src/views/production.ini2
-rw-r--r--docs/tutorials/wiki2/src/authorization/development.ini9
-rw-r--r--docs/tutorials/wiki2/src/authorization/production.ini6
-rw-r--r--docs/tutorials/wiki2/src/basiclayout/development.ini9
-rw-r--r--docs/tutorials/wiki2/src/basiclayout/production.ini7
-rw-r--r--docs/tutorials/wiki2/src/models/development.ini9
-rw-r--r--docs/tutorials/wiki2/src/models/production.ini7
-rw-r--r--docs/tutorials/wiki2/src/tests/development.ini9
-rw-r--r--docs/tutorials/wiki2/src/tests/production.ini7
-rw-r--r--docs/tutorials/wiki2/src/views/development.ini9
-rw-r--r--docs/tutorials/wiki2/src/views/production.ini7
-rw-r--r--pyramid/scaffolds/alchemy/development.ini_tmpl4
-rw-r--r--pyramid/scaffolds/routesalchemy/development.ini_tmpl4
-rw-r--r--pyramid/scaffolds/routesalchemy/production.ini_tmpl2
-rw-r--r--pyramid/scaffolds/starter/development.ini_tmpl2
-rw-r--r--pyramid/scaffolds/zodb/development.ini_tmpl4
-rw-r--r--pyramid/scaffolds/zodb/production.ini_tmpl2
28 files changed, 55 insertions, 86 deletions
diff --git a/docs/narr/MyProject/development.ini b/docs/narr/MyProject/development.ini
index 1818e387b..e134e9f06 100644
--- a/docs/narr/MyProject/development.ini
+++ b/docs/narr/MyProject/development.ini
@@ -7,7 +7,7 @@ pyramid.debug_notfound = false
pyramid.debug_routematch = false
pyramid.debug_templates = true
pyramid.default_locale_name = en
-pyramid.include = pyramid_debugtoolbar
+pyramid.includes = pyramid_debugtoolbar
[pipeline:main]
pipeline =
diff --git a/docs/narr/project.rst b/docs/narr/project.rst
index baf4c86fa..e59d04ee1 100644
--- a/docs/narr/project.rst
+++ b/docs/narr/project.rst
@@ -327,7 +327,7 @@ when you use the ``production.ini`` file instead of the ``development.ini``
ini file to run the application.
You can also turn the debug toolbar off by editing ``development.ini`` and
-commenting out the line ``pyramid.include = pyramid_debugtoolbar``. For
+commenting out the line ``pyramid.includes = pyramid_debugtoolbar``. For
example, instead of:
.. code-block:: ini
@@ -335,16 +335,16 @@ example, instead of:
[app:MyApp]
...
- pyramid.include = pyramid_debugtoolbar
+ pyramid.includes = pyramid_debugtoolbar
-Put a hash mark in front of the ``pyramid.include`` line:
+Put a hash mark in front of the ``pyramid.includes`` line:
.. code-block:: ini
:linenos:
[app:MyApp]
...
- #pyramid.include = pyramid_debugtoolbar
+ #pyramid.includes = pyramid_debugtoolbar
Then restart the application to see that the toolbar has been turned off.
@@ -526,9 +526,9 @@ information.
options should be turned off for production applications, as template
rendering is slowed when either is turned on.
-The ``pyramid.include`` setting in the ``[app:MyProject]`` section tells
+The ``pyramid.includes`` setting in the ``[app:MyProject]`` section tells
Pyramid to "include" configuration from another package. In this case, the
-line ``pyramid.include = pyramid_debugtoolbar`` tells Pyramid to include
+line ``pyramid.includes = pyramid_debugtoolbar`` tells Pyramid to include
configuration from the ``pyramid_debugtoolbar`` package. This turns on a
debugging panel in development mode which will be shown on the right hand
side of the screen. Including the debug toolbar will also make it possible
diff --git a/docs/tutorials/wiki/src/authorization/development.ini b/docs/tutorials/wiki/src/authorization/development.ini
index 733046ed8..48a093981 100644
--- a/docs/tutorials/wiki/src/authorization/development.ini
+++ b/docs/tutorials/wiki/src/authorization/development.ini
@@ -6,8 +6,8 @@ pyramid.debug_notfound = false
pyramid.debug_routematch = false
pyramid.debug_templates = true
pyramid.default_locale_name = en
-pyramid.include = pyramid_debugtoolbar
- pyramid_tm
+pyramid.includes = pyramid_debugtoolbar
+ pyramid_tm
tm.attempts = 3
zodb_uri = file://%(here)s/Data.fs?connection_cache_size=20000
diff --git a/docs/tutorials/wiki/src/authorization/production.ini b/docs/tutorials/wiki/src/authorization/production.ini
index 077620293..bd8199fb2 100644
--- a/docs/tutorials/wiki/src/authorization/production.ini
+++ b/docs/tutorials/wiki/src/authorization/production.ini
@@ -6,7 +6,7 @@ pyramid.debug_notfound = false
pyramid.debug_routematch = false
pyramid.debug_templates = false
pyramid.default_locale_name = en
-pyramid.include = pyramid_tm
+pyramid.includes = pyramid_tm
tm.attempts = 3
zodb_uri = file://%(here)s/Data.fs?connection_cache_size=20000
diff --git a/docs/tutorials/wiki/src/basiclayout/development.ini b/docs/tutorials/wiki/src/basiclayout/development.ini
index edbdd169e..4759662ff 100644
--- a/docs/tutorials/wiki/src/basiclayout/development.ini
+++ b/docs/tutorials/wiki/src/basiclayout/development.ini
@@ -6,8 +6,8 @@ pyramid.debug_notfound = false
pyramid.debug_routematch = false
pyramid.debug_templates = true
pyramid.default_locale_name = en
-pyramid.include = pyramid_debugtoolbar
- pyramid_tm
+pyramid.includes = pyramid_debugtoolbar
+ pyramid_tm
tm.attempts = 3
zodb_uri = file://%(here)s/Data.fs?connection_cache_size=20000
diff --git a/docs/tutorials/wiki/src/basiclayout/production.ini b/docs/tutorials/wiki/src/basiclayout/production.ini
index 077620293..bd8199fb2 100644
--- a/docs/tutorials/wiki/src/basiclayout/production.ini
+++ b/docs/tutorials/wiki/src/basiclayout/production.ini
@@ -6,7 +6,7 @@ pyramid.debug_notfound = false
pyramid.debug_routematch = false
pyramid.debug_templates = false
pyramid.default_locale_name = en
-pyramid.include = pyramid_tm
+pyramid.includes = pyramid_tm
tm.attempts = 3
zodb_uri = file://%(here)s/Data.fs?connection_cache_size=20000
diff --git a/docs/tutorials/wiki/src/models/development.ini b/docs/tutorials/wiki/src/models/development.ini
index 733046ed8..48a093981 100644
--- a/docs/tutorials/wiki/src/models/development.ini
+++ b/docs/tutorials/wiki/src/models/development.ini
@@ -6,8 +6,8 @@ pyramid.debug_notfound = false
pyramid.debug_routematch = false
pyramid.debug_templates = true
pyramid.default_locale_name = en
-pyramid.include = pyramid_debugtoolbar
- pyramid_tm
+pyramid.includes = pyramid_debugtoolbar
+ pyramid_tm
tm.attempts = 3
zodb_uri = file://%(here)s/Data.fs?connection_cache_size=20000
diff --git a/docs/tutorials/wiki/src/models/production.ini b/docs/tutorials/wiki/src/models/production.ini
index 077620293..bd8199fb2 100644
--- a/docs/tutorials/wiki/src/models/production.ini
+++ b/docs/tutorials/wiki/src/models/production.ini
@@ -6,7 +6,7 @@ pyramid.debug_notfound = false
pyramid.debug_routematch = false
pyramid.debug_templates = false
pyramid.default_locale_name = en
-pyramid.include = pyramid_tm
+pyramid.includes = pyramid_tm
tm.attempts = 3
zodb_uri = file://%(here)s/Data.fs?connection_cache_size=20000
diff --git a/docs/tutorials/wiki/src/tests/development.ini b/docs/tutorials/wiki/src/tests/development.ini
index 733046ed8..48a093981 100644
--- a/docs/tutorials/wiki/src/tests/development.ini
+++ b/docs/tutorials/wiki/src/tests/development.ini
@@ -6,8 +6,8 @@ pyramid.debug_notfound = false
pyramid.debug_routematch = false
pyramid.debug_templates = true
pyramid.default_locale_name = en
-pyramid.include = pyramid_debugtoolbar
- pyramid_tm
+pyramid.includes = pyramid_debugtoolbar
+ pyramid_tm
tm.attempts = 3
zodb_uri = file://%(here)s/Data.fs?connection_cache_size=20000
diff --git a/docs/tutorials/wiki/src/tests/production.ini b/docs/tutorials/wiki/src/tests/production.ini
index 077620293..bd8199fb2 100644
--- a/docs/tutorials/wiki/src/tests/production.ini
+++ b/docs/tutorials/wiki/src/tests/production.ini
@@ -6,7 +6,7 @@ pyramid.debug_notfound = false
pyramid.debug_routematch = false
pyramid.debug_templates = false
pyramid.default_locale_name = en
-pyramid.include = pyramid_tm
+pyramid.includes = pyramid_tm
tm.attempts = 3
zodb_uri = file://%(here)s/Data.fs?connection_cache_size=20000
diff --git a/docs/tutorials/wiki/src/views/development.ini b/docs/tutorials/wiki/src/views/development.ini
index edbdd169e..4759662ff 100644
--- a/docs/tutorials/wiki/src/views/development.ini
+++ b/docs/tutorials/wiki/src/views/development.ini
@@ -6,8 +6,8 @@ pyramid.debug_notfound = false
pyramid.debug_routematch = false
pyramid.debug_templates = true
pyramid.default_locale_name = en
-pyramid.include = pyramid_debugtoolbar
- pyramid_tm
+pyramid.includes = pyramid_debugtoolbar
+ pyramid_tm
tm.attempts = 3
zodb_uri = file://%(here)s/Data.fs?connection_cache_size=20000
diff --git a/docs/tutorials/wiki/src/views/production.ini b/docs/tutorials/wiki/src/views/production.ini
index 077620293..bd8199fb2 100644
--- a/docs/tutorials/wiki/src/views/production.ini
+++ b/docs/tutorials/wiki/src/views/production.ini
@@ -6,7 +6,7 @@ pyramid.debug_notfound = false
pyramid.debug_routematch = false
pyramid.debug_templates = false
pyramid.default_locale_name = en
-pyramid.include = pyramid_tm
+pyramid.includes = pyramid_tm
tm.attempts = 3
zodb_uri = file://%(here)s/Data.fs?connection_cache_size=20000
diff --git a/docs/tutorials/wiki2/src/authorization/development.ini b/docs/tutorials/wiki2/src/authorization/development.ini
index bd71cdba5..f93a88e6b 100644
--- a/docs/tutorials/wiki2/src/authorization/development.ini
+++ b/docs/tutorials/wiki2/src/authorization/development.ini
@@ -6,18 +6,15 @@ pyramid.debug_notfound = false
pyramid.debug_routematch = false
pyramid.debug_templates = true
pyramid.default_locale_name = en
+pyramid.includes = pyramid_debugtoolbar
+ pyramid_tm
+
sqlalchemy.url = sqlite:///%(here)s/tutorial.db
[pipeline:main]
pipeline =
- egg:WebError#evalerror
- tm
tutorial
-[filter:tm]
-use = egg:repoze.tm2#tm
-commit_veto = repoze.tm:default_commit_veto
-
[server:main]
use = egg:Paste#http
host = 0.0.0.0
diff --git a/docs/tutorials/wiki2/src/authorization/production.ini b/docs/tutorials/wiki2/src/authorization/production.ini
index ed8eadacc..f7b742cb9 100644
--- a/docs/tutorials/wiki2/src/authorization/production.ini
+++ b/docs/tutorials/wiki2/src/authorization/production.ini
@@ -6,6 +6,7 @@ pyramid.debug_notfound = false
pyramid.debug_routematch = false
pyramid.debug_templates = false
pyramid.default_locale_name = en
+pyramid.includes = pyramid_tm
sqlalchemy.url = sqlite:///%(here)s/tutorial.db
[filter:weberror]
@@ -22,14 +23,9 @@ debug = false
;smtp_use_tls =
;error_message =
-[filter:tm]
-use = egg:repoze.tm2#tm
-commit_veto = repoze.tm:default_commit_veto
-
[pipeline:main]
pipeline =
weberror
- tm
tutorial
[server:main]
diff --git a/docs/tutorials/wiki2/src/basiclayout/development.ini b/docs/tutorials/wiki2/src/basiclayout/development.ini
index bd71cdba5..f93a88e6b 100644
--- a/docs/tutorials/wiki2/src/basiclayout/development.ini
+++ b/docs/tutorials/wiki2/src/basiclayout/development.ini
@@ -6,18 +6,15 @@ pyramid.debug_notfound = false
pyramid.debug_routematch = false
pyramid.debug_templates = true
pyramid.default_locale_name = en
+pyramid.includes = pyramid_debugtoolbar
+ pyramid_tm
+
sqlalchemy.url = sqlite:///%(here)s/tutorial.db
[pipeline:main]
pipeline =
- egg:WebError#evalerror
- tm
tutorial
-[filter:tm]
-use = egg:repoze.tm2#tm
-commit_veto = repoze.tm:default_commit_veto
-
[server:main]
use = egg:Paste#http
host = 0.0.0.0
diff --git a/docs/tutorials/wiki2/src/basiclayout/production.ini b/docs/tutorials/wiki2/src/basiclayout/production.ini
index ed8eadacc..c80a0a216 100644
--- a/docs/tutorials/wiki2/src/basiclayout/production.ini
+++ b/docs/tutorials/wiki2/src/basiclayout/production.ini
@@ -6,6 +6,8 @@ pyramid.debug_notfound = false
pyramid.debug_routematch = false
pyramid.debug_templates = false
pyramid.default_locale_name = en
+pyramid.includes = pyramid_tm
+
sqlalchemy.url = sqlite:///%(here)s/tutorial.db
[filter:weberror]
@@ -22,14 +24,9 @@ debug = false
;smtp_use_tls =
;error_message =
-[filter:tm]
-use = egg:repoze.tm2#tm
-commit_veto = repoze.tm:default_commit_veto
-
[pipeline:main]
pipeline =
weberror
- tm
tutorial
[server:main]
diff --git a/docs/tutorials/wiki2/src/models/development.ini b/docs/tutorials/wiki2/src/models/development.ini
index bd71cdba5..f93a88e6b 100644
--- a/docs/tutorials/wiki2/src/models/development.ini
+++ b/docs/tutorials/wiki2/src/models/development.ini
@@ -6,18 +6,15 @@ pyramid.debug_notfound = false
pyramid.debug_routematch = false
pyramid.debug_templates = true
pyramid.default_locale_name = en
+pyramid.includes = pyramid_debugtoolbar
+ pyramid_tm
+
sqlalchemy.url = sqlite:///%(here)s/tutorial.db
[pipeline:main]
pipeline =
- egg:WebError#evalerror
- tm
tutorial
-[filter:tm]
-use = egg:repoze.tm2#tm
-commit_veto = repoze.tm:default_commit_veto
-
[server:main]
use = egg:Paste#http
host = 0.0.0.0
diff --git a/docs/tutorials/wiki2/src/models/production.ini b/docs/tutorials/wiki2/src/models/production.ini
index ed8eadacc..c80a0a216 100644
--- a/docs/tutorials/wiki2/src/models/production.ini
+++ b/docs/tutorials/wiki2/src/models/production.ini
@@ -6,6 +6,8 @@ pyramid.debug_notfound = false
pyramid.debug_routematch = false
pyramid.debug_templates = false
pyramid.default_locale_name = en
+pyramid.includes = pyramid_tm
+
sqlalchemy.url = sqlite:///%(here)s/tutorial.db
[filter:weberror]
@@ -22,14 +24,9 @@ debug = false
;smtp_use_tls =
;error_message =
-[filter:tm]
-use = egg:repoze.tm2#tm
-commit_veto = repoze.tm:default_commit_veto
-
[pipeline:main]
pipeline =
weberror
- tm
tutorial
[server:main]
diff --git a/docs/tutorials/wiki2/src/tests/development.ini b/docs/tutorials/wiki2/src/tests/development.ini
index bd71cdba5..f93a88e6b 100644
--- a/docs/tutorials/wiki2/src/tests/development.ini
+++ b/docs/tutorials/wiki2/src/tests/development.ini
@@ -6,18 +6,15 @@ pyramid.debug_notfound = false
pyramid.debug_routematch = false
pyramid.debug_templates = true
pyramid.default_locale_name = en
+pyramid.includes = pyramid_debugtoolbar
+ pyramid_tm
+
sqlalchemy.url = sqlite:///%(here)s/tutorial.db
[pipeline:main]
pipeline =
- egg:WebError#evalerror
- tm
tutorial
-[filter:tm]
-use = egg:repoze.tm2#tm
-commit_veto = repoze.tm:default_commit_veto
-
[server:main]
use = egg:Paste#http
host = 0.0.0.0
diff --git a/docs/tutorials/wiki2/src/tests/production.ini b/docs/tutorials/wiki2/src/tests/production.ini
index ed8eadacc..c80a0a216 100644
--- a/docs/tutorials/wiki2/src/tests/production.ini
+++ b/docs/tutorials/wiki2/src/tests/production.ini
@@ -6,6 +6,8 @@ pyramid.debug_notfound = false
pyramid.debug_routematch = false
pyramid.debug_templates = false
pyramid.default_locale_name = en
+pyramid.includes = pyramid_tm
+
sqlalchemy.url = sqlite:///%(here)s/tutorial.db
[filter:weberror]
@@ -22,14 +24,9 @@ debug = false
;smtp_use_tls =
;error_message =
-[filter:tm]
-use = egg:repoze.tm2#tm
-commit_veto = repoze.tm:default_commit_veto
-
[pipeline:main]
pipeline =
weberror
- tm
tutorial
[server:main]
diff --git a/docs/tutorials/wiki2/src/views/development.ini b/docs/tutorials/wiki2/src/views/development.ini
index bd71cdba5..f93a88e6b 100644
--- a/docs/tutorials/wiki2/src/views/development.ini
+++ b/docs/tutorials/wiki2/src/views/development.ini
@@ -6,18 +6,15 @@ pyramid.debug_notfound = false
pyramid.debug_routematch = false
pyramid.debug_templates = true
pyramid.default_locale_name = en
+pyramid.includes = pyramid_debugtoolbar
+ pyramid_tm
+
sqlalchemy.url = sqlite:///%(here)s/tutorial.db
[pipeline:main]
pipeline =
- egg:WebError#evalerror
- tm
tutorial
-[filter:tm]
-use = egg:repoze.tm2#tm
-commit_veto = repoze.tm:default_commit_veto
-
[server:main]
use = egg:Paste#http
host = 0.0.0.0
diff --git a/docs/tutorials/wiki2/src/views/production.ini b/docs/tutorials/wiki2/src/views/production.ini
index ed8eadacc..c80a0a216 100644
--- a/docs/tutorials/wiki2/src/views/production.ini
+++ b/docs/tutorials/wiki2/src/views/production.ini
@@ -6,6 +6,8 @@ pyramid.debug_notfound = false
pyramid.debug_routematch = false
pyramid.debug_templates = false
pyramid.default_locale_name = en
+pyramid.includes = pyramid_tm
+
sqlalchemy.url = sqlite:///%(here)s/tutorial.db
[filter:weberror]
@@ -22,14 +24,9 @@ debug = false
;smtp_use_tls =
;error_message =
-[filter:tm]
-use = egg:repoze.tm2#tm
-commit_veto = repoze.tm:default_commit_veto
-
[pipeline:main]
pipeline =
weberror
- tm
tutorial
[server:main]
diff --git a/pyramid/scaffolds/alchemy/development.ini_tmpl b/pyramid/scaffolds/alchemy/development.ini_tmpl
index 4dc4c2461..d946d7291 100644
--- a/pyramid/scaffolds/alchemy/development.ini_tmpl
+++ b/pyramid/scaffolds/alchemy/development.ini_tmpl
@@ -7,8 +7,8 @@ pyramid.debug_notfound = false
pyramid.debug_routematch = false
pyramid.debug_templates = true
pyramid.default_locale_name = en
-pyramid.include = pyramid_debugtoolbar
- pyramid_tm
+pyramid.includes = pyramid_debugtoolbar
+ pyramid_tm
sqlalchemy.url = sqlite:///%(here)s/{{project}}.db
diff --git a/pyramid/scaffolds/routesalchemy/development.ini_tmpl b/pyramid/scaffolds/routesalchemy/development.ini_tmpl
index 4dc4c2461..d946d7291 100644
--- a/pyramid/scaffolds/routesalchemy/development.ini_tmpl
+++ b/pyramid/scaffolds/routesalchemy/development.ini_tmpl
@@ -7,8 +7,8 @@ pyramid.debug_notfound = false
pyramid.debug_routematch = false
pyramid.debug_templates = true
pyramid.default_locale_name = en
-pyramid.include = pyramid_debugtoolbar
- pyramid_tm
+pyramid.includes = pyramid_debugtoolbar
+ pyramid_tm
sqlalchemy.url = sqlite:///%(here)s/{{project}}.db
diff --git a/pyramid/scaffolds/routesalchemy/production.ini_tmpl b/pyramid/scaffolds/routesalchemy/production.ini_tmpl
index 9fd182ba3..dadf6c366 100644
--- a/pyramid/scaffolds/routesalchemy/production.ini_tmpl
+++ b/pyramid/scaffolds/routesalchemy/production.ini_tmpl
@@ -7,7 +7,7 @@ pyramid.debug_notfound = false
pyramid.debug_routematch = false
pyramid.debug_templates = false
pyramid.default_locale_name = en
-pyramid.include = pyramid_tm
+pyramid.includes = pyramid_tm
sqlalchemy.url = sqlite:///%(here)s/{{project}}.db
diff --git a/pyramid/scaffolds/starter/development.ini_tmpl b/pyramid/scaffolds/starter/development.ini_tmpl
index bbb448055..e670c167c 100644
--- a/pyramid/scaffolds/starter/development.ini_tmpl
+++ b/pyramid/scaffolds/starter/development.ini_tmpl
@@ -7,7 +7,7 @@ pyramid.debug_notfound = false
pyramid.debug_routematch = false
pyramid.debug_templates = true
pyramid.default_locale_name = en
-pyramid.include = pyramid_debugtoolbar
+pyramid.includes = pyramid_debugtoolbar
[pipeline:main]
pipeline =
diff --git a/pyramid/scaffolds/zodb/development.ini_tmpl b/pyramid/scaffolds/zodb/development.ini_tmpl
index 246357737..68297dfca 100644
--- a/pyramid/scaffolds/zodb/development.ini_tmpl
+++ b/pyramid/scaffolds/zodb/development.ini_tmpl
@@ -7,8 +7,8 @@ pyramid.debug_notfound = false
pyramid.debug_routematch = false
pyramid.debug_templates = true
pyramid.default_locale_name = en
-pyramid.include = pyramid_debugtoolbar
- pyramid_tm
+pyramid.includes = pyramid_debugtoolbar
+ pyramid_tm
tm.attempts = 3
zodb_uri = file://%(here)s/Data.fs?connection_cache_size=20000
diff --git a/pyramid/scaffolds/zodb/production.ini_tmpl b/pyramid/scaffolds/zodb/production.ini_tmpl
index 336902e67..de14f0271 100644
--- a/pyramid/scaffolds/zodb/production.ini_tmpl
+++ b/pyramid/scaffolds/zodb/production.ini_tmpl
@@ -7,7 +7,7 @@ pyramid.debug_notfound = false
pyramid.debug_routematch = false
pyramid.debug_templates = false
pyramid.default_locale_name = en
-pyramid.include = pyramid_tm
+pyramid.includes = pyramid_tm
tm.attempts = 3
zodb_uri = file://%(here)s/Data.fs?connection_cache_size=20000