summaryrefslogtreecommitdiff
path: root/docs
diff options
context:
space:
mode:
authorSteve Piercy <web@stevepiercy.com>2016-01-19 11:19:32 -0800
committerSteve Piercy <web@stevepiercy.com>2016-01-19 11:19:32 -0800
commit23f48b4837b77f2cd6ca1e84f7459732ef767799 (patch)
tree08ca713ed929ad3615c72f7c622587e4bd958387 /docs
parentf606ea3280fa51b3862272fedf2e0630e9c599b5 (diff)
parentb89295d7cfc26b24719692fa96aec24a8e1bd7ad (diff)
downloadpyramid-23f48b4837b77f2cd6ca1e84f7459732ef767799.tar.gz
pyramid-23f48b4837b77f2cd6ca1e84f7459732ef767799.tar.bz2
pyramid-23f48b4837b77f2cd6ca1e84f7459732ef767799.zip
Merge pull request #2252 from stevepiercy/master
workaround for #2251. See also https://github.com/sphinx-doc/sphinx/i…
Diffstat (limited to 'docs')
-rw-r--r--docs/quick_tour/requests/app.py2
1 files changed, 1 insertions, 1 deletions
diff --git a/docs/quick_tour/requests/app.py b/docs/quick_tour/requests/app.py
index 7ac81eb50..815714464 100644
--- a/docs/quick_tour/requests/app.py
+++ b/docs/quick_tour/requests/app.py
@@ -4,7 +4,7 @@ from pyramid.response import Response
def hello_world(request):
- # Some parameters from a request such as /?name=lisa
+ """ Some parameters from a request such as /?name=lisa """
url = request.url
name = request.params.get('name', 'No Name Provided')