Ticket #5343: core.management.__init__.py.2.diff

File core.management.__init__.py.2.diff, 410 bytes (added by Manoj Govindan <egmanoj@…>, 17 years ago)

Corrected diff.

  • __init__.py

     
    177177    represents django-admin.py.
    178178    """
    179179    def __init__(self, project_directory):
     180        super(ProjectManagementUtility, self).__init__()
    180181        try:
    181182            self.commands = get_commands()
    182183        except CommandError, e:
Back to Top