Ticket #7044: loading_typo.diff

File loading_typo.diff, 583 bytes (added by Manuel Saelices, 16 years ago)
  • django/db/models/loading.py

     
    157157        """
    158158        for model in models:
    159159            # Store as 'name: model' pair in a dictionary
    160             # in the _app_models dictionary
     160            # in the app_models dictionary
    161161            model_name = model._meta.object_name.lower()
    162162            model_dict = self.app_models.setdefault(app_label, {})
    163163            if model_name in model_dict:
Back to Top