Revert "DbTxn: pass db to generic DbTxn"

This reverts commit 8e89ceb395.
This commit is contained in:
Doug Blank 2015-08-22 21:44:17 -04:00
parent fa053d2754
commit 1f42fe835f

View File

@ -385,7 +385,7 @@ class Bookmarks(object):
class DbGenericTxn(DbTxn):
def __init__(self, message, batch=False):
def __init__(self, message, db, batch=False):
DbTxn.__init__(self, message, db, batch)
def get(self, key, default=None, txn=None, **kwargs):
@ -1488,7 +1488,7 @@ class DbGeneric(DbWriteBase, DbReadBase, UpdateCallback, Callback):
kwargs may contain:
no_magic
"""
return DbGenericTxn(message, self, batch)
return DbGenericTxn(message, batch)
def get_from_name_and_handle(self, table_name, handle):
"""