mirror of
https://github.com/django/django.git
synced 2025-08-03 18:38:50 +00:00
Fixed a bug I introduced in my previosu ommit.
This commit is contained in:
parent
df3d7e66da
commit
0b69a75502
1 changed files with 7 additions and 0 deletions
|
@ -39,8 +39,15 @@ class DefaultConnectionProxy(object):
|
|||
def __delattr__(self, name):
|
||||
return delattr(connections[DEFAULT_DB_ALIAS], name)
|
||||
|
||||
def __eq__(self, other):
|
||||
return connections[DEFAULT_DB_ALIAS] == other
|
||||
|
||||
def __ne__(self, other):
|
||||
return connections[DEFAULT_DB_ALIAS] != other
|
||||
|
||||
connection = DefaultConnectionProxy()
|
||||
|
||||
|
||||
class DefaultBackendProxy(object):
|
||||
"""
|
||||
Temporary proxy class used during deprecation period of the `backend` module
|
||||
|
|
Loading…
Add table
Add a link
Reference in a new issue