summaryrefslogtreecommitdiff
path: root/docs/quick_tutorial
diff options
context:
space:
mode:
authorSteve Piercy <web@stevepiercy.com>2014-03-26 04:15:20 -0700
committerSteve Piercy <web@stevepiercy.com>2014-03-26 04:15:20 -0700
commite012af904feb15f20a134f22eaeeb61bd9d56cc8 (patch)
tree54394d4fd3840aa78ce89a2d92984666860c83f1 /docs/quick_tutorial
parentf32bbf92489880f6cd2c26d43dab74d8c84dc299 (diff)
parent92b27dc06a4a73ea4ff0649855a5a84cd30b458c (diff)
downloadpyramid-e012af904feb15f20a134f22eaeeb61bd9d56cc8.tar.gz
pyramid-e012af904feb15f20a134f22eaeeb61bd9d56cc8.tar.bz2
pyramid-e012af904feb15f20a134f22eaeeb61bd9d56cc8.zip
Merge pull request #1280 from dhaaker/patch-2
Update hello_world.rst
Diffstat (limited to 'docs/quick_tutorial')
-rw-r--r--docs/quick_tutorial/hello_world.rst4
1 files changed, 2 insertions, 2 deletions
diff --git a/docs/quick_tutorial/hello_world.rst b/docs/quick_tutorial/hello_world.rst
index 86e1319f0..1a9ba4c9d 100644
--- a/docs/quick_tutorial/hello_world.rst
+++ b/docs/quick_tutorial/hello_world.rst
@@ -96,13 +96,13 @@ Extra Credit
.. code-block:: python
- print ('Starting up server on http://localhost:6547')
+ print('Incoming request')
...instead of:
.. code-block:: python
- print 'Starting up server on http://localhost:6547'
+ print 'Incoming request'
#. What happens if you return a string of HTML? A sequence of integers?