mirror of https://github.com/django/django.git
Fixed #5566 -- Fixed typo from [6042]. Thanks to thomas@gumption.com and mir for bringing attention to this.
git-svn-id: http://code.djangoproject.com/svn/django/trunk@6404 bcc190cf-cafb-0310-a4f2-bffc1f526a37
This commit is contained in:
parent
87d71277b8
commit
872f06d770
|
@ -117,7 +117,7 @@ def call_command(name, *args, **options):
|
||||||
# If the command is already loaded, use it directly.
|
# If the command is already loaded, use it directly.
|
||||||
klass = app_name
|
klass = app_name
|
||||||
else:
|
else:
|
||||||
klass = load_command_class(app_name, subcommand)
|
klass = load_command_class(app_name, name)
|
||||||
except KeyError:
|
except KeyError:
|
||||||
raise CommandError, "Unknown command: %r" % name
|
raise CommandError, "Unknown command: %r" % name
|
||||||
return klass.execute(*args, **options)
|
return klass.execute(*args, **options)
|
||||||
|
|
Loading…
Reference in New Issue