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