summaryrefslogtreecommitdiff
path: root/django
diff options
context:
space:
mode:
Diffstat (limited to 'django')
-rw-r--r--django/db/backends/__init__.py2
1 files changed, 1 insertions, 1 deletions
diff --git a/django/db/backends/__init__.py b/django/db/backends/__init__.py
index 23bfafbba4..23df66a762 100644
--- a/django/db/backends/__init__.py
+++ b/django/db/backends/__init__.py
@@ -11,6 +11,7 @@ class BaseDatabaseWrapper(local):
Represents a database connection.
"""
ops = None
+ vendor = 'unknown'
def __init__(self, settings_dict, alias=DEFAULT_DB_ALIAS):
# `settings_dict` should be a dictionary containing keys such as
@@ -20,7 +21,6 @@ class BaseDatabaseWrapper(local):
self.queries = []
self.settings_dict = settings_dict
self.alias = alias
- self.vendor = 'unknown'
self.use_debug_cursor = None
def __eq__(self, other):