#15293 closed (fixed)
django.db.backends.dummy.base.DatabaseWrapper has no attribute 'rollback_unless_managed'
Description ¶
This issue is related to #15230. Latest version from trunk breaks sites without a database again.
Index: db/backends/dummy/base.py =================================================================== --- db/backends/dummy/base.py (revision 15525) +++ db/backends/dummy/base.py (working copy) @@ -58,3 +58,6 @@ def close(self): pass + + def rollback_unless_managed(self): + pass
Change History (3)
comment:1 by , 14 years ago
Keywords: | blocker added |
---|---|
Triage Stage: | Unreviewed → Accepted |
comment:2 by , 14 years ago
Resolution: | → fixed |
---|---|
Status: | new → closed |
Note:
See TracTickets
for help on using tickets.
In [15528]: