Fixed #8086 -- Removed 2.5 specific keyword argument to __import__. Thanks CHasenpflug for noticing this.

git-svn-id: http://code.djangoproject.com/svn/django/trunk@8188 bcc190cf-cafb-0310-a4f2-bffc1f526a37
This commit is contained in:
Brian Rosner 2008-08-02 00:33:21 +00:00
parent c4ba628231
commit d7dc2d3985
1 changed files with 1 additions and 1 deletions

View File

@ -12,7 +12,7 @@ def autodiscover():
from django.conf import settings
for app in settings.INSTALLED_APPS:
try:
imp.find_module("admin", __import__(app, fromlist=[app.split(".")[-1]]).__path__)
imp.find_module("admin", __import__(app, {}, {}, [app.split(".")[-1]]).__path__)
except ImportError:
# there is no app admin.py, skip it
continue