summaryrefslogtreecommitdiff
path: root/django
diff options
context:
space:
mode:
authorArthur Koziel <arthur@arthurkoziel.com>2010-09-12 21:52:56 +0000
committerArthur Koziel <arthur@arthurkoziel.com>2010-09-12 21:52:56 +0000
commitc9b188c4ec939abbe48dae5a371276742e64b6b8 (patch)
tree514fbacd026962f84369332b17b88ce83513c7e9 /django
parent32733074906e220c0f9f63f22450c41e81494435 (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.py2
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')]