summaryrefslogtreecommitdiff
diff options
context:
space:
mode:
authorSteve Piercy <web@stevepiercy.com>2018-08-18 12:14:45 -0700
committerSteve Piercy <web@stevepiercy.com>2018-08-18 12:14:45 -0700
commit48608b6056fef3922157d5d0b67e8145305fa6be (patch)
treee5860b60a35d17d2421fe9edffab174c72981bf5
parent473796179fbc3a67732829e9ac22357520ce4607 (diff)
downloadpyramid-48608b6056fef3922157d5d0b67e8145305fa6be.tar.gz
pyramid-48608b6056fef3922157d5d0b67e8145305fa6be.tar.bz2
pyramid-48608b6056fef3922157d5d0b67e8145305fa6be.zip
Clean up code-blocks in qt/functional_testing
-rw-r--r--docs/quick_tutorial/hello_world.rst10
1 files changed, 5 insertions, 5 deletions
diff --git a/docs/quick_tutorial/hello_world.rst b/docs/quick_tutorial/hello_world.rst
index 94242f1f4..161f07ac8 100644
--- a/docs/quick_tutorial/hello_world.rst
+++ b/docs/quick_tutorial/hello_world.rst
@@ -49,18 +49,18 @@ Steps
.. code-block:: bash
- $ cd ~/projects/quick_tutorial; mkdir hello_world; cd hello_world
+ cd ~/projects/quick_tutorial; mkdir hello_world; cd hello_world
#. Copy the following into ``hello_world/app.py``:
.. literalinclude:: hello_world/app.py
- :linenos:
+ :linenos:
#. Run the application:
.. code-block:: bash
- $ $VENV/bin/python app.py
+ $VENV/bin/python app.py
#. Open http://localhost:6543/ in your browser.
@@ -95,13 +95,13 @@ Extra credit
.. code-block:: python
- print('Incoming request')
+ print('Incoming request')
...instead of:
.. code-block:: python
- print 'Incoming request'
+ print 'Incoming request'
#. What happens if you return a string of HTML? A sequence of integers?