django.db.backends.dummy.base.DatabaseWrapper has no attribute 'rollback_unless_managed'
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)
Keywords: |
blocker added
|
Triage Stage: |
Unreviewed → Accepted
|
Resolution: |
→ fixed
|
Status: |
new → closed
|
In [15528]: