Преглед изворни кода

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."""