Commit 9a8449af authored by Justin Bronn's avatar Justin Bronn
Browse files

Fixed #12605 -- Removed redundant import of `ImproperlyConfigured`. Thanks, tmcw.


git-svn-id: http://code.djangoproject.com/svn/django/trunk@12310 bcc190cf-cafb-0310-a4f2-bffc1f526a37
parent 14acace0
Loading
Loading
Loading
Loading
+0 −1
Original line number Diff line number Diff line
@@ -40,7 +40,6 @@ class DatabaseWrapper(SqliteDatabaseWrapper):
            ## The following is the same as in django.db.backends.sqlite3.base ##
            settings_dict = self.settings_dict
            if not settings_dict['NAME']:
                from django.core.exceptions import ImproperlyConfigured
                raise ImproperlyConfigured("Please fill out the database NAME in the settings module before using the database.")
            kwargs = {
                'database': settings_dict['NAME'],