Skip to content

Commit

Permalink
Fixed #15230 -- added some more attributes to the dummy database back…
Browse files Browse the repository at this point in the history
…end.

git-svn-id: http://code.djangoproject.com/svn/django/trunk@15440 bcc190cf-cafb-0310-a4f2-bffc1f526a37
  • Loading branch information
alex committed Feb 6, 2011
1 parent 0737307 commit 5718a67
Showing 1 changed file with 4 additions and 0 deletions.
4 changes: 4 additions & 0 deletions django/db/backends/dummy/base.py
Expand Up @@ -52,5 +52,9 @@ def __init__(self, settings_dict, alias, *args, **kwargs):
self.settings_dict = settings_dict self.settings_dict = settings_dict
self.alias = alias self.alias = alias


self.transaction_state = []
self.savepoint_state = 0
self.dirty = None

def close(self): def close(self):
pass pass

0 comments on commit 5718a67

Please sign in to comment.