diff options
Diffstat (limited to 'django/core/apps.py')
| -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')] |
