magic-removal: changed explicit settings import to qualified settings import in django.templatetags
git-svn-id: http://code.djangoproject.com/svn/django/branches/magic-removal@1990 bcc190cf-cafb-0310-a4f2-bffc1f526a37
This commit is contained in:
parent
aad6c20978
commit
42350ba71a
|
@ -1,6 +1,6 @@
|
|||
from django.conf.settings import INSTALLED_APPS
|
||||
from django.conf import settings
|
||||
|
||||
for a in INSTALLED_APPS:
|
||||
for a in settings.INSTALLED_APPS:
|
||||
try:
|
||||
__path__.extend(__import__(a + '.templatetags', '', '', ['']).__path__)
|
||||
except ImportError:
|
||||
|
|
Loading…
Reference in New Issue