fix two typos in export scripts

This commit is contained in:
ichuang
2013-07-12 09:43:52 -04:00
parent 84f531af54
commit 84c38b4e9a
2 changed files with 2 additions and 2 deletions

View File

@@ -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]

View File

@@ -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]