Browse Source

Removes help command from celery help screen

Ask Solem 12 years ago
parent
commit
7db298c61a
1 changed files with 1 additions and 2 deletions
  1. 1 2
      celery/bin/celery.py

+ 1 - 2
celery/bin/celery.py

@@ -37,8 +37,7 @@ Type '%(prog_name)s <command> --help' for help using a specific command.
 commands = {}
 
 command_classes = (
-    ('Main', ['worker', 'events', 'beat',
-              'shell', 'multi', 'amqp', 'help'], 'green'),
+    ('Main', ['worker', 'events', 'beat', 'shell', 'multi', 'amqp'], 'green'),
     ('Remote Control', ['status', 'inspect', 'control'], 'blue'),
     ('Utils', ['purge', 'list', 'migrate', 'apply', 'result', 'report'], None),
 )