summaryrefslogtreecommitdiff
path: root/docs
diff options
context:
space:
mode:
authorwim glenn <wim.glenn@gmail.com>2018-08-08 13:23:45 -0500
committerGitHub <noreply@github.com>2018-08-08 13:23:45 -0500
commitdb1c7d41f3145ba671fa33a62f62891d6b0b6cbf (patch)
tree19f2fd063712542771b964a7a6430d1715e05d2d /docs
parent2d1b3c6120f7776918d9b67c25baf2e45e4b3bbd (diff)
downloadcherrypy-git-db1c7d41f3145ba671fa33a62f62891d6b0b6cbf.tar.gz
Make it clearer that app.conf is a filename, not a Python object
Diffstat (limited to 'docs')
-rw-r--r--docs/basics.rst2
1 files changed, 1 insertions, 1 deletions
diff --git a/docs/basics.rst b/docs/basics.rst
index 3086af3b..717eedbe 100644
--- a/docs/basics.rst
+++ b/docs/basics.rst
@@ -903,4 +903,4 @@ You can also use a file to configure it:
return "Hello World!"
if __name__ == '__main__':
- cherrypy.quickstart(HelloWorld(), '/', app.conf)
+ cherrypy.quickstart(HelloWorld(), '/', "app.conf")