summaryrefslogtreecommitdiff
path: root/docs/tutorials/gae
diff options
context:
space:
mode:
authorChris McDonough <chrism@agendaless.com>2009-12-09 05:26:41 +0000
committerChris McDonough <chrism@agendaless.com>2009-12-09 05:26:41 +0000
commit20ef6a98e7abaeb8c3ee1133eff39ab90a286df9 (patch)
treeb36091069a879c50bc5185f8abe116d572d7c84a /docs/tutorials/gae
parent2bec99e31b8b22e1f5af4ebcc4a8d544be70c5e0 (diff)
downloadpyramid-20ef6a98e7abaeb8c3ee1133eff39ab90a286df9.tar.gz
pyramid-20ef6a98e7abaeb8c3ee1133eff39ab90a286df9.tar.bz2
pyramid-20ef6a98e7abaeb8c3ee1133eff39ab90a286df9.zip
Excise make_app from docs.
Diffstat (limited to 'docs/tutorials/gae')
-rw-r--r--docs/tutorials/gae/index.rst9
1 files changed, 1 insertions, 8 deletions
diff --git a/docs/tutorials/gae/index.rst b/docs/tutorials/gae/index.rst
index 2cdb3bf81..a165ff5f1 100644
--- a/docs/tutorials/gae/index.rst
+++ b/docs/tutorials/gae/index.rst
@@ -81,7 +81,7 @@ system.
#. Edit ``config.py``
Edit the ``APP_NAME`` and ``APP_ARGS`` settings within
- ``config.py``. The APP_NAME must be ``bfgapp.run:make_app``, and
+ ``config.py``. The ``APP_NAME`` must be ``bfgapp.run:app``, and
the APP_ARGS must be ``({},)``. Any other settings in
``config.py`` should remain the same.
@@ -91,13 +91,6 @@ system.
APP_NAME = 'bfgapp.run:app'
APP_ARGS = ({},)
- .. warning:: It's very important that the ``APP_NAME`` is
- ``bfgapp.run:app`` instead of ``bfgapp.run.make_app``. If you
- use the latter by mistake, you'll be confused for at least an
- hour when debugging an error like this: ``IOError: [Errno 2] No
- such file or directory:
- '/Users/chrism/projects/bfg_gae/bfgapp2/app/configure.zcml'``.
-
#. Edit ``runner.py``
To prevent errors for ``import site``, add this code stanza before