diff options
| author | d2m <d2m@zaphod.(none)> | 2010-11-17 19:02:51 +0100 |
|---|---|---|
| committer | d2m <d2m@zaphod.(none)> | 2010-11-17 19:02:51 +0100 |
| commit | 4f8c69f2ce04b5cb02b07c3891180cb46abd6aa2 (patch) | |
| tree | 125abb502e453b475ce957642c5d686b02e42dba /docs/tutorials | |
| parent | 03331655743a4826eaec56986720b9fa98c9ad13 (diff) | |
| download | pyramid-4f8c69f2ce04b5cb02b07c3891180cb46abd6aa2.tar.gz pyramid-4f8c69f2ce04b5cb02b07c3891180cb46abd6aa2.tar.bz2 pyramid-4f8c69f2ce04b5cb02b07c3891180cb46abd6aa2.zip | |
paster templates now use the name "main" to represent the function that returns a WSGI application
Diffstat (limited to 'docs/tutorials')
| -rw-r--r-- | docs/tutorials/gae/index.rst | 4 |
1 files changed, 2 insertions, 2 deletions
diff --git a/docs/tutorials/gae/index.rst b/docs/tutorials/gae/index.rst index a2b190a31..9c8e8c07e 100644 --- a/docs/tutorials/gae/index.rst +++ b/docs/tutorials/gae/index.rst @@ -72,13 +72,13 @@ system. #. Edit ``config.py`` Edit the ``APP_NAME`` and ``APP_ARGS`` settings within - ``config.py``. The ``APP_NAME`` must be ``pyramidapp:app``, and + ``config.py``. The ``APP_NAME`` must be ``pyramidapp:main``, and the APP_ARGS must be ``({},)``. Any other settings in ``config.py`` should remain the same. .. code-block:: python - APP_NAME = 'pyramidapp:app' + APP_NAME = 'pyramidapp:main' APP_ARGS = ({},) #. Edit ``runner.py`` |
