summaryrefslogtreecommitdiff
path: root/django/apps
diff options
context:
space:
mode:
authorAymeric Augustin <aymeric.augustin@m4x.org>2014-01-06 22:48:41 +0100
committerAymeric Augustin <aymeric.augustin@m4x.org>2014-01-06 22:48:41 +0100
commit6a320cc14ae6cd2606cc10a5ba8b1c09f737bab4 (patch)
tree00de0258bd969d7bd6efefcaf9ba53c3651a8d38 /django/apps
parentb57c48d012e300f518841fe066c85ecde2747cdf (diff)
Fixed #21718 -- Renamed has_app to is_installed.
Diffstat (limited to 'django/apps')
-rw-r--r--django/apps/registry.py2
1 files changed, 1 insertions, 1 deletions
diff --git a/django/apps/registry.py b/django/apps/registry.py
index f88fb73dd6..a0cd5e0abf 100644
--- a/django/apps/registry.py
+++ b/django/apps/registry.py
@@ -192,7 +192,7 @@ class Apps(object):
app_models[model_name] = model
self.clear_cache()
- def has_app(self, app_name):
+ def is_installed(self, app_name):
"""
Checks whether an application with this name exists in the registry.