diff options
| author | Arthur Koziel <arthur@arthurkoziel.com> | 2010-09-12 21:52:56 +0000 |
|---|---|---|
| committer | Arthur Koziel <arthur@arthurkoziel.com> | 2010-09-12 21:52:56 +0000 |
| commit | c9b188c4ec939abbe48dae5a371276742e64b6b8 (patch) | |
| tree | 514fbacd026962f84369332b17b88ce83513c7e9 /django | |
| parent | 32733074906e220c0f9f63f22450c41e81494435 (diff) | |
[soc2010/app-loading] update get_app/get_apps tests
git-svn-id: http://code.djangoproject.com/svn/django/branches/soc2010/app-loading@13811 bcc190cf-cafb-0310-a4f2-bffc1f526a37
Diffstat (limited to 'django')
| -rw-r--r-- | django/core/apps.py | 2 |
1 files changed, 1 insertions, 1 deletions
diff --git a/django/core/apps.py b/django/core/apps.py index df8355ca12..4a9be1893a 100644 --- a/django/core/apps.py +++ b/django/core/apps.py @@ -189,7 +189,7 @@ class AppCache(object): return self.loaded def get_apps(self): - "Returns a list of all installed modules that contain models." + "Returns a list of all models modules." self._populate() return [app.models_module for app in self.app_instances\ if hasattr(app, 'models_module')] |
