summaryrefslogtreecommitdiff
path: root/docs/narr/project.rst
diff options
context:
space:
mode:
authorChris McDonough <chrism@plope.com>2011-10-06 03:22:35 -0400
committerChris McDonough <chrism@plope.com>2011-10-06 03:22:35 -0400
commitf8869cb0664506204b22aa791003a6d5f8ded58c (patch)
tree7fad521744fa2414252827646740d92f52454f9c /docs/narr/project.rst
parentcfb2b5596b8ef366aeef3bce5b61eafc7a2f175d (diff)
downloadpyramid-f8869cb0664506204b22aa791003a6d5f8ded58c.tar.gz
pyramid-f8869cb0664506204b22aa791003a6d5f8ded58c.tar.bz2
pyramid-f8869cb0664506204b22aa791003a6d5f8ded58c.zip
remove stray references to Paste
Diffstat (limited to 'docs/narr/project.rst')
-rw-r--r--docs/narr/project.rst5
1 files changed, 3 insertions, 2 deletions
diff --git a/docs/narr/project.rst b/docs/narr/project.rst
index c961b4143..4f96448af 100644
--- a/docs/narr/project.rst
+++ b/docs/narr/project.rst
@@ -683,7 +683,8 @@ The ``myproject`` :term:`package` lives inside the ``MyProject``
#. An ``__init__.py`` file signifies that this is a Python :term:`package`.
It also contains code that helps users run the application, including a
- ``main`` function which is used as a Paste entry point.
+ ``main`` function which is used as a entry point for commands such as
+ ``pserve``, ``pshell``, ``pviews``, and others.
#. A ``resources.py`` module, which contains :term:`resource` code.
@@ -750,7 +751,7 @@ also informs Python that the directory which contains it is a *package*.
directory of the ``mypackage`` package).
Line 12 returns a :term:`WSGI` application to the caller of the function
- (Paste).
+ (Pyramid's pserve).
.. index::
single: views.py