Skip to content

Commit

Permalink
Fix markdown handling of double dash. Use triple back tick to mark py…
Browse files Browse the repository at this point in the history
…thon code snipet.
  • Loading branch information
Medhat Gayed committed Jan 23, 2018
1 parent 7c03faa commit 5d7add4
Showing 1 changed file with 6 additions and 4 deletions.
10 changes: 6 additions & 4 deletions README.rst
Original file line number Diff line number Diff line change
Expand Up @@ -19,20 +19,21 @@ Install Django RQ Pulse::

Add it to your `INSTALLED_APPS`:

.. code-block:: python
```python
INSTALLED_APPS = (
...
'django_rq_pulse.apps.DjangoRqPulseConfig',
...
)
```

Usage
--------

.. code-block:: python
```python
# Check that rqworkers are running.
# If the actual number of workers is not equal the expected number of workers or
# If there are items in the queue but the queue size is not changing notify admins by email.
python manage.py rq_pulse_check
# The above command will run with default parameters where
Expand All @@ -46,6 +47,7 @@ Usage
# To get a list of the command parameters use the --help parameter.
python manage.py rq_pulse_check --help
```

Running Tests
-------------
Expand Down

0 comments on commit 5d7add4

Please sign in to comment.