Commit f34de7dd authored by Aymeric Augustin's avatar Aymeric Augustin
Browse files

[py3] Fixed backends tests.

parent c03cf0b0
Loading
Loading
Loading
Loading
+2 −0
Original line number Diff line number Diff line
@@ -47,6 +47,8 @@ class BaseDatabaseWrapper(object):
    def __ne__(self, other):
        return not self == other

    __hash__ = object.__hash__

    def _commit(self):
        if self.connection is not None:
            return self.connection.commit()