summaryrefslogtreecommitdiff
path: root/docs/tutorials/wiki/basiclayout.rst
diff options
context:
space:
mode:
authorMichael Merickel <github@m.merickel.org>2024-02-07 20:52:05 -0700
committerGitHub <noreply@github.com>2024-02-07 20:52:05 -0700
commit53eb7e7cc6b7bfdedb4df4821af66619bebf909c (patch)
treec0244a2971d7fead848359f3d83fe158f8b509ad /docs/tutorials/wiki/basiclayout.rst
parent151ebdc003a3a372017fdf73c14fbebcc550535d (diff)
parentfea81c0cf25402c7088b002be7a1672d29841345 (diff)
downloadpyramid-53eb7e7cc6b7bfdedb4df4821af66619bebf909c.tar.gz
pyramid-53eb7e7cc6b7bfdedb4df4821af66619bebf909c.tar.bz2
pyramid-53eb7e7cc6b7bfdedb4df4821af66619bebf909c.zip
Merge pull request #3751 from Pylons/tseaver-refresh-zodb-tutorial
docs: refresh ZODB wiki tutorial
Diffstat (limited to 'docs/tutorials/wiki/basiclayout.rst')
-rw-r--r--docs/tutorials/wiki/basiclayout.rst2
1 files changed, 1 insertions, 1 deletions
diff --git a/docs/tutorials/wiki/basiclayout.rst b/docs/tutorials/wiki/basiclayout.rst
index c1c762ae4..01d366e7b 100644
--- a/docs/tutorials/wiki/basiclayout.rst
+++ b/docs/tutorials/wiki/basiclayout.rst
@@ -15,7 +15,7 @@ Even if empty, this marks a directory as a Python package.
We use ``__init__.py`` both as a marker, indicating the directory in which it is contained is a package, and to contain application configuration code.
When you run the application using the ``pserve`` command using the ``development.ini`` generated configuration file, the application configuration points at a :term:`Setuptools` :term:`entry point` described as ``egg:tutorial``.
-In our application, because the application's ``setup.py`` file says so, this entry point happens to be the ``main`` function within the file named ``__init__.py``.
+In our application, because the application's ``pyproject.toml`` file says so, this entry point happens to be the ``main`` function within the file named ``__init__.py``.
Open ``tutorial/__init__.py``.
It should already contain the following: