Commit 84c38b4e by ichuang

fix two typos in export scripts

parent 84f531af
......@@ -18,7 +18,7 @@ class Command(BaseCommand):
def handle(self, *args, **options):
if len(args) != 2:
raise CommandError("import requires two arguments: <course location> <output path>")
raise CommandError("export requires two arguments: <course location> <output path>")
course_id = args[0]
output_path = args[1]
......
......@@ -18,7 +18,7 @@ class Command(BaseCommand):
def handle(self, *args, **options):
if len(args) != 1:
raise CommandError("import requires one argument: <output path>")
raise CommandError("export requires one argument: <output path>")
output_path = args[0]
......
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