Fixed #24358 -- Corrected code-block directives for console sessions.

This commit is contained in:
Sean Wang 2015-02-18 19:19:21 -08:00 committed by Tim Graham
parent ea3168dc6c
commit eba6dff581
17 changed files with 100 additions and 134 deletions

View file

@ -24,7 +24,7 @@ The uWSGI wiki describes several `installation procedures`_. Using pip, the
Python package manager, you can install any uWSGI version with a single
command. For example:
.. code-block:: bash
.. code-block:: console
# Install current stable version.
$ pip install uwsgi

View file

@ -24,7 +24,7 @@ The ReportLab library is `available on PyPI`_. A `user guide`_ (not
coincidentally, a PDF file) is also available for download.
You can install ReportLab with ``pip``:
.. code-block:: bash
.. code-block:: console
$ pip install reportlab

View file

@ -52,7 +52,7 @@ might want to set up a new environment with all the dependencies first.
Exactly which steps you will need to take depends on your installation process.
The most convenient way is to use pip_ with the ``--upgrade`` or ``-U`` flag:
.. code-block:: bash
.. code-block:: console
$ pip install -U Django
@ -74,7 +74,7 @@ warnings are silenced by default. It is useful to turn the warnings on so they
are shown in the test output (you can also use the flag if you test your app
manually using ``manage.py runserver``):
.. code-block:: bash
.. code-block:: console
$ python -Wall manage.py test