From e829e9ff8f41ee94ca12c1cbbc0c7aaf45706aec Mon Sep 17 00:00:00 2001 From: Russell Keith-Magee Date: Tue, 17 Jun 2008 13:58:19 +0000 Subject: [PATCH] Fixed #7044 -- Corrected a minor typo in a docstring in the model loader. Thanks, msaelices. git-svn-id: http://code.djangoproject.com/svn/django/trunk@7679 bcc190cf-cafb-0310-a4f2-bffc1f526a37 --- django/db/models/loading.py | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/django/db/models/loading.py b/django/db/models/loading.py index e7d134e6da..e62188adf7 100644 --- a/django/db/models/loading.py +++ b/django/db/models/loading.py @@ -157,7 +157,7 @@ class AppCache(object): """ for model in models: # Store as 'name: model' pair in a dictionary - # in the _app_models dictionary + # in the app_models dictionary model_name = model._meta.object_name.lower() model_dict = self.app_models.setdefault(app_label, {}) if model_name in model_dict: