diff options
| author | Steve Piercy <web@stevepiercy.com> | 2016-01-24 00:15:46 -0800 |
|---|---|---|
| committer | Steve Piercy <web@stevepiercy.com> | 2016-01-24 00:15:46 -0800 |
| commit | 1779c2a7c7653142cc3164e83b1f0fe43850f97b (patch) | |
| tree | eaf17b34119f166ade1ebf6eb747629f31884265 /docs/quick_tour/requests | |
| parent | 2796def9af4a2a9814f3df08ef85b2eacae73135 (diff) | |
| download | pyramid-1779c2a7c7653142cc3164e83b1f0fe43850f97b.tar.gz pyramid-1779c2a7c7653142cc3164e83b1f0fe43850f97b.tar.bz2 pyramid-1779c2a7c7653142cc3164e83b1f0fe43850f97b.zip | |
Bump sphinx to 1.3.5; revert comment syntax. Closes #2251.
Diffstat (limited to 'docs/quick_tour/requests')
| -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 621b0693e..f55264cff 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') |
