소스 검색

Fix grammar typo in docstring

Jozef 7 년 전
부모
커밋
5f2141af2e
1개의 변경된 파일1개의 추가작업 그리고 1개의 파일을 삭제
  1. 1 1
      celery/worker/control.py

+ 1 - 1
celery/worker/control.py

@@ -555,7 +555,7 @@ def cancel_consumer(state, queue, **_):
 
 @inspect_command()
 def active_queues(state):
-    """List the task queues a worker are currently consuming from."""
+    """List the task queues a worker is currently consuming from."""
     if state.consumer.task_consumer:
         return [dict(queue.as_dict(recurse=True))
                 for queue in state.consumer.task_consumer.queues]