Ticket #5566: fixed.patch

File fixed.patch, 592 bytes (added by davisp, 17 years ago)

Preliminary patch looks like it fixes things

  • django/core/management/__init__.py

     
    117117            # If the command is already loaded, use it directly.
    118118            klass = app_name
    119119        else:
    120             klass = load_command_class(app_name, subcommand)
     120            klass = load_command_class(app_name, name)
    121121    except KeyError:
    122122        raise CommandError, "Unknown command: %r" % name
    123123    return klass.execute(*args, **options)
Back to Top