summaryrefslogtreecommitdiff
path: root/django/db/__init__.py
diff options
context:
space:
mode:
authorAdrian Holovaty <adrian@holovaty.com>2006-11-07 19:07:27 +0000
committerAdrian Holovaty <adrian@holovaty.com>2006-11-07 19:07:27 +0000
commita84404c190f1d3e9d507faf8031c98517c4c4466 (patch)
tree448e497c7143891493cfe9cc913afcfcce330afb /django/db/__init__.py
parent6f164ad4856a1a5431b3b3e19ab6dbafe692a52d (diff)
Formatting fixes from the past round of checkins
git-svn-id: http://code.djangoproject.com/svn/django/trunk@4052 bcc190cf-cafb-0310-a4f2-bffc1f526a37
Diffstat (limited to 'django/db/__init__.py')
-rw-r--r--django/db/__init__.py2
1 files changed, 0 insertions, 2 deletions
diff --git a/django/db/__init__.py b/django/db/__init__.py
index bed41dfdbc..e5b4d32e0b 100644
--- a/django/db/__init__.py
+++ b/django/db/__init__.py
@@ -6,8 +6,6 @@ __all__ = ('backend', 'connection', 'DatabaseError')
if not settings.DATABASE_ENGINE:
settings.DATABASE_ENGINE = 'dummy'
-if not settings.DATABASE_OPTIONS:
- settings.DATABASE_OPTIONS = {}
try:
backend = __import__('django.db.backends.%s.base' % settings.DATABASE_ENGINE, {}, {}, [''])