ソースを参照

Change the help for the celerybeat management command

Ask Solem 15 年 前
コミット
479a884964
1 ファイル変更2 行追加2 行削除
  1. 2 2
      celery/management/commands/celerybeat.py

+ 2 - 2
celery/management/commands/celerybeat.py

@@ -9,9 +9,9 @@ from celery.bin.celerybeat import run_clockservice, OPTION_LIST
 
 
 class Command(BaseCommand):
-    """Run the celery daemon."""
+    """Run the celery periodic task scheduler."""
     option_list = BaseCommand.option_list + OPTION_LIST
-    help = 'Run the celery daemon'
+    help = 'Run the celery periodic task scheduler'
 
     def handle(self, *args, **options):
         """Handle the management command."""