diff options
| author | Steve Piercy <web@stevepiercy.com> | 2016-01-19 11:13:11 -0800 |
|---|---|---|
| committer | Steve Piercy <web@stevepiercy.com> | 2016-01-19 11:13:11 -0800 |
| commit | b89295d7cfc26b24719692fa96aec24a8e1bd7ad (patch) | |
| tree | 08ca713ed929ad3615c72f7c622587e4bd958387 /docs | |
| parent | f606ea3280fa51b3862272fedf2e0630e9c599b5 (diff) | |
| download | pyramid-b89295d7cfc26b24719692fa96aec24a8e1bd7ad.tar.gz pyramid-b89295d7cfc26b24719692fa96aec24a8e1bd7ad.tar.bz2 pyramid-b89295d7cfc26b24719692fa96aec24a8e1bd7ad.zip | |
workaround for #2251. See also https://github.com/sphinx-doc/sphinx/issues/2253
Diffstat (limited to 'docs')
| -rw-r--r-- | docs/quick_tour/requests/app.py | 2 |
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') |
