Ticket #5566: fixed.patch
File fixed.patch, 592 bytes (added by , 17 years ago) |
---|
-
django/core/management/__init__.py
117 117 # If the command is already loaded, use it directly. 118 118 klass = app_name 119 119 else: 120 klass = load_command_class(app_name, subcommand)120 klass = load_command_class(app_name, name) 121 121 except KeyError: 122 122 raise CommandError, "Unknown command: %r" % name 123 123 return klass.execute(*args, **options)