Commit 70888212 by Chris Dodge

fix command error message. There are really only two arguments supported (the…

fix command error message. There are really only two arguments supported (the optional 6 had been removed, but I forgot to change the message
parent 28d98274
...@@ -20,7 +20,7 @@ class Command(BaseCommand): ...@@ -20,7 +20,7 @@ class Command(BaseCommand):
def handle(self, *args, **options): def handle(self, *args, **options):
if len(args) != 2: if len(args) != 2:
raise CommandError("clone requires either two or six arguments: <source-location> <dest-location>") raise CommandError("clone requires either two arguments: <source-location> <dest-location>")
source_location_str = args[0] source_location_str = args[0]
dest_location_str = args[1] dest_location_str = args[1]
......
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