diff options
| author | Alex Gaynor <alex.gaynor@gmail.com> | 2011-02-06 18:46:40 +0000 |
|---|---|---|
| committer | Alex Gaynor <alex.gaynor@gmail.com> | 2011-02-06 18:46:40 +0000 |
| commit | 5718a678e53be46d90d5bc07519907d317908928 (patch) | |
| tree | 6d256d1ca9eb990788c711756f8c563b4266a857 | |
| parent | 0737307e8c519250aad43420245b4a3eae578650 (diff) | |
Fixed #15230 -- added some more attributes to the dummy database backend.
git-svn-id: http://code.djangoproject.com/svn/django/trunk@15440 bcc190cf-cafb-0310-a4f2-bffc1f526a37
| -rw-r--r-- | django/db/backends/dummy/base.py | 4 |
1 files changed, 4 insertions, 0 deletions
diff --git a/django/db/backends/dummy/base.py b/django/db/backends/dummy/base.py index 71f7a0e3e2..8a32a62aba 100644 --- a/django/db/backends/dummy/base.py +++ b/django/db/backends/dummy/base.py @@ -52,5 +52,9 @@ class DatabaseWrapper(object): self.settings_dict = settings_dict self.alias = alias + self.transaction_state = [] + self.savepoint_state = 0 + self.dirty = None + def close(self): pass |
