Commit 85af2641 authored by Brian Rosner's avatar Brian Rosner
Browse files

Reverted [8174]. It is causing some serious breakage right now. Need to investigate more.

git-svn-id: http://code.djangoproject.com/svn/django/trunk@8183 bcc190cf-cafb-0310-a4f2-bffc1f526a37
parent 9d3c9218
Loading
Loading
Loading
Loading
+2 −5
Original line number Diff line number Diff line
@@ -8,12 +8,9 @@ def autodiscover():
    not present. This forces an import on them to register any admin bits they
    may want.
    """
    import imp
    from django.conf import settings
    for app in settings.INSTALLED_APPS:
        try:
            imp.find_module("admin", app.split("."))
        except ImportError:
            # there is no admin.py in app, skip it.
            continue
            __import__("%s.admin" % app)
        except ImportError:
            pass