summaryrefslogtreecommitdiff
path: root/docs/narr/templates.rst
diff options
context:
space:
mode:
authorChris McDonough <chrism@plope.com>2011-08-22 02:16:55 -0400
committerChris McDonough <chrism@plope.com>2011-08-22 02:16:55 -0400
commit3d338ea5737b7c113b17120b40684e2694cf3fa9 (patch)
tree4bbca1ffb7dfcc1570c6c8d06884832b0be70237 /docs/narr/templates.rst
parent6413015a8f5f4de675016f33640b483bb0ecb56f (diff)
downloadpyramid-3d338ea5737b7c113b17120b40684e2694cf3fa9.tar.gz
pyramid-3d338ea5737b7c113b17120b40684e2694cf3fa9.tar.bz2
pyramid-3d338ea5737b7c113b17120b40684e2694cf3fa9.zip
- Use [app:main] instead of a pipeline in all scaffolds and tutorials
and narrative docs. - Break out awkward description of PasteDeploy entry points from project chapter into its own Paste chapter.
Diffstat (limited to 'docs/narr/templates.rst')
-rw-r--r--docs/narr/templates.rst6
1 files changed, 3 insertions, 3 deletions
diff --git a/docs/narr/templates.rst b/docs/narr/templates.rst
index 0f46f6422..d5caed4be 100644
--- a/docs/narr/templates.rst
+++ b/docs/narr/templates.rst
@@ -638,8 +638,8 @@ the application's configuration section, e.g.:
.. code-block:: ini
:linenos:
- [app:MyProject]
- use = egg:MyProject#app
+ [app:main]
+ use = egg:MyProject
pyramid.debug_templates = true
With template debugging off, a :exc:`NameError` exception resulting
@@ -800,7 +800,7 @@ application's configuration section, e.g.:
:linenos:
[app:main]
- use = egg:MyProject#app
+ use = egg:MyProject
pyramid.reload_templates = true
.. index::