summaryrefslogtreecommitdiff
path: root/django/apps/config.py
diff options
context:
space:
mode:
authorTim Graham <timograham@gmail.com>2015-01-18 16:30:45 -0500
committerTim Graham <timograham@gmail.com>2015-01-18 16:30:45 -0500
commitbd98926f0eb19d27821a8a7679b42ff46e53e4da (patch)
treebfac77ab872cc288bf0b2c521b513d777ee43d6f /django/apps/config.py
parent89e9f81601f7a343690e1153e70fd56091246d0b (diff)
Removed an obsolete comment in django/apps/config.py
Diffstat (limited to 'django/apps/config.py')
-rw-r--r--django/apps/config.py3
1 files changed, 0 insertions, 3 deletions
diff --git a/django/apps/config.py b/django/apps/config.py
index 843013f30e..fd0e2fe78c 100644
--- a/django/apps/config.py
+++ b/django/apps/config.py
@@ -110,9 +110,6 @@ class AppConfig(object):
# If we're reaching this point, we must attempt to load the app config
# class located at <mod_path>.<cls_name>
-
- # Avoid django.utils.module_loading.import_by_path because it
- # masks errors -- it reraises ImportError as ImproperlyConfigured.
mod = import_module(mod_path)
try:
cls = getattr(mod, cls_name)