Mercurial > p > roundup > code
diff roundup/backends/__init__.py @ 3727:04dee2ac29e2
sqlite module detection was broken for python 2.5 compiled w/o sqlite support
| author | Richard Jones <richard@users.sourceforge.net> |
|---|---|
| date | Mon, 09 Oct 2006 23:49:32 +0000 |
| parents | 6a96ad643629 |
| children | 9997b941dd6d |
line wrap: on
line diff
--- a/roundup/backends/__init__.py Sat Oct 07 03:03:29 2006 +0000 +++ b/roundup/backends/__init__.py Mon Oct 09 23:49:32 2006 +0000 @@ -15,7 +15,7 @@ # BASIS, AND THERE IS NO OBLIGATION WHATSOEVER TO PROVIDE MAINTENANCE, # SUPPORT, UPDATES, ENHANCEMENTS, OR MODIFICATIONS. # -# $Id: __init__.py,v 1.38 2006-10-04 02:58:10 richard Exp $ +# $Id: __init__.py,v 1.39 2006-10-09 23:49:32 richard Exp $ '''Container for the hyperdb storage backend implementations. ''' @@ -31,7 +31,7 @@ 'mysql': ('MySQLdb',), 'postgresql': ('psycopg',), 'tsearch2': ('psycopg',), - 'sqlite': ('pysqlite', 'pysqlite2', 'sqlite3'), + 'sqlite': ('pysqlite', 'pysqlite2', 'sqlite3', '_sqlite3'), } def get_backend(name):
