Commit 559e15a2 authored by Tim Graham's avatar Tim Graham
Browse files

[1.8.x] Removed an obsolete comment in django/apps/config.py

Backport of bd98926f from master
parent f31ed5c9
Loading
Loading
Loading
Loading
+0 −3
Original line number Diff line number Diff line
@@ -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)