##// END OF EJS Templates
try to fallback to pysqlite2.dbapi2 as sqlite3...
Skylar Saveland -
Show More
@@ -20,7 +20,10 b' import re'
20 20 try:
21 21 import sqlite3
22 22 except ImportError:
23 sqlite3 = None
23 try:
24 from pysqlite2 import dbapi2 as sqlite3
25 except ImportError:
26 sqlite3 = None
24 27 import threading
25 28
26 29 # Our own packages
General Comments 0
You need to be logged in to leave comments. Login now