1
0
mirror of https://github.com/django/django.git synced 2025-01-26 02:00:08 +00:00

Fixes #15892 -- Duplicate 'settings' import (and some unused imports) in settings_tests. Thanks Shawn Milo.

git-svn-id: http://code.djangoproject.com/svn/django/trunk@16102 bcc190cf-cafb-0310-a4f2-bffc1f526a37
This commit is contained in:
Chris Beaven 2011-04-25 05:59:09 +00:00
parent a6c08a53d3
commit d8bfd3955d

View File

@ -1,6 +1,5 @@
from django.conf import settings
from django.utils import unittest
from django.conf import settings, UserSettingsHolder, global_settings
class SettingsTests(unittest.TestCase):