Fix for bug #852350. This should work, and it explains why I've never encountered it myself: I don't have mx.DateTime installed. Now we just make sure sqlite thinks *everyone* doesn't have it installed.

This commit is contained in:
Jeremy Fincher 2003-12-02 12:32:58 +00:00
parent 2a9d9d1b5d
commit 8e624e6eac

View File

@ -59,6 +59,7 @@ import structures
try:
import sqlite
sqlite.have_datetime = False
Connection = sqlite.Connection
class MyConnection(sqlite.Connection):
def commit(self, *args, **kwargs):