From 127a3f002d1dd0e27ac978fb17bd21aedca000ce Mon Sep 17 00:00:00 2001 From: Adrian Holovaty Date: Fri, 30 Jun 2006 19:13:00 +0000 Subject: [PATCH] Negligible spacing change to django/db/models/loading.py git-svn-id: http://code.djangoproject.com/svn/django/trunk@3243 bcc190cf-cafb-0310-a4f2-bffc1f526a37 --- django/db/models/loading.py | 4 ++-- 1 file changed, 2 insertions(+), 2 deletions(-) diff --git a/django/db/models/loading.py b/django/db/models/loading.py index 3d34845147..c7920fa4e0 100644 --- a/django/db/models/loading.py +++ b/django/db/models/loading.py @@ -15,7 +15,7 @@ _app_models = {} # Dictionary of models against app label _app_errors = {} # Dictionary of errors that were experienced when loading the INSTALLED_APPS # Key is the app_name of the model, value is the exception that was raised # during model loading. -_loaded = False # Has the contents of settings.INSTALLED_APPS been loaded? +_loaded = False # Has the contents of settings.INSTALLED_APPS been loaded? # i.e., has get_apps() been called? def get_apps(): @@ -60,7 +60,7 @@ def get_app_errors(): global _app_errors get_apps() # Run get_apps() to populate the _app_list cache. Slightly hackish. return _app_errors - + def get_models(app_mod=None): """ Given a module containing models, returns a list of the models. Otherwise