diff options
| author | Adrian Holovaty <adrian@holovaty.com> | 2006-06-30 19:13:00 +0000 |
|---|---|---|
| committer | Adrian Holovaty <adrian@holovaty.com> | 2006-06-30 19:13:00 +0000 |
| commit | 127a3f002d1dd0e27ac978fb17bd21aedca000ce (patch) | |
| tree | e0282b55913058fd6afec0b588e7be4b79c6e109 | |
| parent | 0d14498ee00fb505f919410a0513452817ffced9 (diff) | |
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
| -rw-r--r-- | django/db/models/loading.py | 4 |
1 files 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 |
