Commit 34e321fe authored by Jim Fulton's avatar Jim Fulton

Eliminated the log arument from FileStorage objects, which now use

the standard logging facility.
parent 6b23f70a
......@@ -17,9 +17,7 @@ Globals.DatabaseVersion='3'
OFS.Application.import_products()
# Open the database
DB=ZODB.FileStorage.FileStorage(
Globals.BobobaseName,
log=lambda x: sys.stderr.write(x))
DB=ZODB.FileStorage.FileStorage(Globals.BobobaseName)
DB=ZODB.DB(DB)
Globals.DB=DB # Ick, this is temporary until we come up with some registry
Globals.opened.append(DB)
......
Markdown is supported
0%
or
You are about to add 0 people to the discussion. Proceed with caution.
Finish editing this message first!
Please register or to comment