d2m
2010-11-17 4f8c69f2ce04b5cb02b07c3891180cb46abd6aa2
paster templates now use the name "main" to represent the function that returns a WSGI application
1 files modified
4 ■■■■ changed files
docs/tutorials/gae/index.rst 4 ●●●● patch | view | raw | blame | history
docs/tutorials/gae/index.rst
@@ -72,13 +72,13 @@
#. 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``