summaryrefslogtreecommitdiff
path: root/docs/narr/logging.rst
diff options
context:
space:
mode:
authorSteve Piercy <web@stevepiercy.com>2016-12-27 03:00:09 -0800
committerSteve Piercy <web@stevepiercy.com>2016-12-27 03:00:09 -0800
commitfb77c9006eda49c144203a1474fcbeed2fea55cb (patch)
tree5c1f00658b2ba289d3e2348571c5b4492a1cfdf1 /docs/narr/logging.rst
parentaf098b66c60b2451d6e9e932d5b4bddfaa63f323 (diff)
downloadpyramid-fb77c9006eda49c144203a1474fcbeed2fea55cb.tar.gz
pyramid-fb77c9006eda49c144203a1474fcbeed2fea55cb.tar.bz2
pyramid-fb77c9006eda49c144203a1474fcbeed2fea55cb.zip
quick_tutorial - refactor MyProject/myproject for cookiecutters
Diffstat (limited to 'docs/narr/logging.rst')
-rw-r--r--docs/narr/logging.rst6
1 files changed, 3 insertions, 3 deletions
diff --git a/docs/narr/logging.rst b/docs/narr/logging.rst
index ec3590e62..87682158b 100644
--- a/docs/narr/logging.rst
+++ b/docs/narr/logging.rst
@@ -50,7 +50,7 @@ Default logging configuration is provided in both the default
``development.ini`` and the ``production.ini`` files. If you use ``pyramid-cookiecutter-starter`` to generate a Pyramid project with the name of the package as ``hello_world``, then the logging configuration
in the ``development.ini`` file is as follows:
-.. literalinclude:: MyProject/development.ini
+.. literalinclude:: myproject/development.ini
:language: ini
:lineno-match:
:lines: 29-
@@ -253,14 +253,14 @@ translogger and your application in it. For instance, change from this:
.. code-block:: ini
[app:main]
- use = egg:MyProject
+ use = egg:myproject
To this:
.. code-block:: ini
[app:mypyramidapp]
- use = egg:MyProject
+ use = egg:myproject
[filter:translogger]
use = egg:Paste#translogger