summaryrefslogtreecommitdiff
path: root/docs/tutorials/wiki2/definingmodels.rst
diff options
context:
space:
mode:
authorChris McDonough <chrism@plope.com>2011-10-06 03:05:29 -0400
committerChris McDonough <chrism@plope.com>2011-10-06 03:05:29 -0400
commitcfb2b5596b8ef366aeef3bce5b61eafc7a2f175d (patch)
treeae20b3579631fff9f4e455fa4929d23420b9a65e /docs/tutorials/wiki2/definingmodels.rst
parentd29151abecd85e844b170fb2880dc701b63d7f52 (diff)
downloadpyramid-cfb2b5596b8ef366aeef3bce5b61eafc7a2f175d.tar.gz
pyramid-cfb2b5596b8ef366aeef3bce5b61eafc7a2f175d.tar.bz2
pyramid-cfb2b5596b8ef366aeef3bce5b61eafc7a2f175d.zip
remove all reference to the paster command-line utility
Diffstat (limited to 'docs/tutorials/wiki2/definingmodels.rst')
-rw-r--r--docs/tutorials/wiki2/definingmodels.rst8
1 files changed, 4 insertions, 4 deletions
diff --git a/docs/tutorials/wiki2/definingmodels.rst b/docs/tutorials/wiki2/definingmodels.rst
index 7aa2214fc..083ec0aa8 100644
--- a/docs/tutorials/wiki2/definingmodels.rst
+++ b/docs/tutorials/wiki2/definingmodels.rst
@@ -2,9 +2,9 @@
Defining the Domain Model
=========================
-The first change we'll make to our stock paster-generated application will be
-to define a :term:`domain model` constructor representing a wiki page. We'll
-do this inside our ``models.py`` file.
+The first change we'll make to our stock pcreate-generated application will
+be to define a :term:`domain model` constructor representing a wiki page.
+We'll do this inside our ``models.py`` file.
The source code for this tutorial stage can be browsed at
`http://github.com/Pylons/pyramid/tree/master/docs/tutorials/wiki2/src/models/
@@ -64,7 +64,7 @@ FrontPage object to our database at startup time.
:language: python
Here, we're using a slightly different binding syntax. It is otherwise
-largely the same as the ``initialize_sql`` in the paster-generated
+largely the same as the ``initialize_sql`` in the pcreate-generated
``models.py``.
Our ``DBSession`` assignment stays the same as the original generated