Ask Solem vor 9 Jahren
Ursprung
Commit
de6feab8c1
2 geänderte Dateien mit 5 neuen und 5 gelöschten Zeilen
  1. 1 1
      docs/configuration.rst
  2. 4 4
      examples/django/README.rst

+ 1 - 1
docs/configuration.rst

@@ -910,7 +910,7 @@ cassandra backend settings
 
     To install, use `pip` or `easy_install`:
 
-    .. code-block:: bash
+    .. code-block:: console
 
         $ pip install cassandra-driver
 

+ 4 - 4
examples/django/README.rst

@@ -37,22 +37,22 @@ http://docs.celeryproject.org/en/latest/getting-started/brokers/rabbitmq.html
 
 In addition, some Python requirements must also be satisfied:
 
-.. code-block:: bash
+.. code-block:: console
 
     $ pip install -r requirements.txt
 
 Starting the worker
 ===================
 
-.. code-block:: bash
+.. code-block:: console
 
     $ celery -A proj worker -l info
 
 Running a task
 ===================
 
-.. code-block:: bash
-    
+.. code-block:: console
+
     $ python ./manage.sh shell
     >>> from demoapp.tasks import add, mul, xsum
     >>> res = add.delay(2,3)