Commit 46e9a8f6 by Ashley Penney

Add help string.

parent 482cefd2
...@@ -10,6 +10,14 @@ dog_http_api.api_key = settings.DATADOG_API ...@@ -10,6 +10,14 @@ dog_http_api.api_key = settings.DATADOG_API
class Command(BaseCommand): class Command(BaseCommand):
help = """
This command handles the importing and exporting of student records for
Pearson. It uses some other Django commands to export and import the
files and then uploads over SFTP to pearson and stuffs the entry in an
S3 bucket for archive purposes.
Usage: django-admin.py pearson-transfer --mode [import|export|both]
"""
option_list = BaseCommand.option_list + ( option_list = BaseCommand.option_list + (
make_option('--mode', make_option('--mode',
......
Markdown is supported
0% or
You are about to add 0 people to the discussion. Proceed with caution.
Finish editing this message first!
Please register or to comment