Skip to content

Commit

Permalink
Changes "command-line" -> "command line"
Browse files Browse the repository at this point in the history
  • Loading branch information
ask committed Jan 28, 2013
1 parent 6a8221d commit c9f238b
Show file tree
Hide file tree
Showing 7 changed files with 10 additions and 10 deletions.
2 changes: 1 addition & 1 deletion celery/bin/base.py
Original file line number Diff line number Diff line change
Expand Up @@ -193,7 +193,7 @@ def on_concurrency_setup(self):
pass

def usage(self, command):
"""Returns the command-line usage string for this app."""
"""Returns the command line usage string for this app."""
return '%%prog [options] %s' % (self.args, )

def get_options(self):
Expand Down
2 changes: 1 addition & 1 deletion celery/platforms.py
Original file line number Diff line number Diff line change
Expand Up @@ -82,7 +82,7 @@ def _find_option_with_arg(argv, short_opts=None, long_opts=None):


def maybe_patch_concurrency(argv, short_opts=None, long_opts=None):
"""With short and long opt alternatives that specify the command-line
"""With short and long opt alternatives that specify the command line
option to set the pool, this makes sure that anything that needs
to be patched is completed as early as possible.
(e.g. eventlet/gevent monkey patches)."""
Expand Down
4 changes: 2 additions & 2 deletions docs/history/changelog-2.1.rst
Original file line number Diff line number Diff line change
Expand Up @@ -390,7 +390,7 @@ News
* :func:`~celery.task.control.broadcast`: Added callback argument, this can be
used to process replies immediately as they arrive.

* celeryctl: New command-line utility to manage and inspect worker nodes,
* celeryctl: New command line utility to manage and inspect worker nodes,
apply tasks and inspect the results of tasks.

.. seealso::
Expand Down Expand Up @@ -472,7 +472,7 @@ News
stdouts = logging.getLogger("mystdoutslogger")
log.redirect_stdouts_to_logger(stdouts, loglevel=logging.WARNING)
* celeryd: Added command-line option :option:`-I`/:option:`--include`:
* celeryd: Added command line option :option:`-I`/:option:`--include`:

A comma separated list of (task) modules to be imported.

Expand Down
2 changes: 1 addition & 1 deletion docs/history/changelog-2.3.rst
Original file line number Diff line number Diff line change
Expand Up @@ -360,7 +360,7 @@ Fixes
* ``CELERY_TASK_ERROR_WHITE_LIST`` is now properly initialized
in all loaders.

* celeryd_detach now passes through command-line configuration.
* celeryd_detach now passes through command line configuration.

* Remote control command ``add_consumer`` now does nothing if the
queue is already being consumed from.
Expand Down
4 changes: 2 additions & 2 deletions docs/userguide/monitoring.rst
Original file line number Diff line number Diff line change
Expand Up @@ -23,8 +23,8 @@ Workers
.. _monitoring-celeryctl:


``celery``: Management Command-line Utilities
---------------------------------------------
``celery``: Command Line Management Utility
-------------------------------------------

.. versionadded:: 2.1

Expand Down
2 changes: 1 addition & 1 deletion docs/userguide/routing.rst
Original file line number Diff line number Diff line change
Expand Up @@ -360,7 +360,7 @@ Hands-on with the API
---------------------

Celery comes with a tool called :program:`celery amqp`
that is used for command-line access to the AMQP API, enabling access to
that is used for command line access to the AMQP API, enabling access to
administration tasks like creating/deleting queues and exchanges, purging
queues or sending messages. It can also be used for non-AMQP brokers,
but different implementation may not implement all commands.
Expand Down
4 changes: 2 additions & 2 deletions docs/whatsnew-3.0.rst
Original file line number Diff line number Diff line change
Expand Up @@ -759,7 +759,7 @@ In Other News
>>> import celery
>>> print(celery.bugreport())

- Using the ``celery`` command-line program:
- Using the ``celery`` command line program:

.. code-block:: bash
Expand Down Expand Up @@ -910,7 +910,7 @@ Internals

- Renamed module ``celery.abstract`` -> :mod:`celery.worker.bootsteps`.

- Command-line docs are now parsed from the module docstrings.
- Command line docs are now parsed from the module docstrings.

- Test suite directory has been reorganized.

Expand Down

0 comments on commit c9f238b

Please sign in to comment.