summaryrefslogtreecommitdiff
path: root/docs/quick_tutorial/authentication.rst
diff options
context:
space:
mode:
authorSteve Piercy <web@stevepiercy.com>2018-08-18 04:42:15 -0700
committerSteve Piercy <web@stevepiercy.com>2018-08-18 04:42:15 -0700
commitcd648a12626e4c44405db04d673f522b8e3cc004 (patch)
tree856beac33518146910634cac34b12aa70a09ec1d /docs/quick_tutorial/authentication.rst
parente705e92cdb47c99093c4fcc1eff229d4d79ac76e (diff)
downloadpyramid-cd648a12626e4c44405db04d673f522b8e3cc004.tar.gz
pyramid-cd648a12626e4c44405db04d673f522b8e3cc004.tar.bz2
pyramid-cd648a12626e4c44405db04d673f522b8e3cc004.zip
Clean up code-blocks in qt/authentication
Diffstat (limited to 'docs/quick_tutorial/authentication.rst')
-rw-r--r--docs/quick_tutorial/authentication.rst6
1 files changed, 3 insertions, 3 deletions
diff --git a/docs/quick_tutorial/authentication.rst b/docs/quick_tutorial/authentication.rst
index 529f51ddd..eb9b6b395 100644
--- a/docs/quick_tutorial/authentication.rst
+++ b/docs/quick_tutorial/authentication.rst
@@ -33,7 +33,7 @@ Steps
.. code-block:: bash
- $ cd ..; cp -r view_classes authentication; cd authentication
+ cd ..; cp -r view_classes authentication; cd authentication
#. Add ``bcrypt`` as a dependency in ``authentication/setup.py``:
@@ -46,7 +46,7 @@ Steps
.. code-block:: bash
- $ $VENV/bin/pip install -e .
+ $VENV/bin/pip install -e .
#. Put the security hash in the ``authentication/development.ini``
configuration file as ``tutorial.secret`` instead of putting it in the code:
@@ -88,7 +88,7 @@ Steps
.. code-block:: bash
- $ $VENV/bin/pserve development.ini --reload
+ $VENV/bin/pserve development.ini --reload
#. Open http://localhost:6543/ in a browser.