summaryrefslogtreecommitdiff
diff options
context:
space:
mode:
authorAndy Lulham <a.lulham@gmail.com>2019-09-08 12:05:33 +0100
committerSelwin Ong <selwin.ong@gmail.com>2019-09-08 18:05:33 +0700
commit1a382e761f3fa41d28256f9ae3f6bce26f8dc7c1 (patch)
tree80cf1f649e1829fc7e4e17c4c7990667a382d922
parentb020c7fa34e67a62b7f9f2e01a06f067969223a2 (diff)
downloadrq-1a382e761f3fa41d28256f9ae3f6bce26f8dc7c1.tar.gz
Fix where -> were typo (#1121)
-rwxr-xr-xrq/cli/cli.py2
1 files changed, 1 insertions, 1 deletions
diff --git a/rq/cli/cli.py b/rq/cli/cli.py
index 6cdefcf..635f178 100755
--- a/rq/cli/cli.py
+++ b/rq/cli/cli.py
@@ -278,6 +278,6 @@ def suspend(cli_config, duration, **options):
@main.command()
@pass_cli_config
def resume(cli_config, **options):
- """Resumes processing of queues, that where suspended with `rq suspend`"""
+ """Resumes processing of queues, that were suspended with `rq suspend`"""
connection_resume(cli_config.connection)
click.echo("Resuming workers.")