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

File core.management.__init__.py.diff, 577 bytes (added by Manoj Govindan <egmanoj@…>, 17 years ago)
  • core/management/__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()
     183            x =  os.environ['DJANGO_SETTINGS_MODULE']
    182184        except CommandError, e:
    183185            sys.stderr.write(str(e))
    184186            sys.exit(1)
Back to Top