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 . - - # 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)