Mercurial > p > roundup > code
diff roundup/backends/__init__.py @ 4269:ab4563e97d22
corrections for python2.3 compatibility:
- rename testdata in test/test_anypy_hashlib.py, python2.3 testsuite
will try to execute anything that starts with "test".
- fix generator expressions in roundup/admin.py
- fix sort calls with key attribute, use a standard (slower) compare
function instead
- Add 'sqlite' to ImportError exceptions when searching for backends
| author | Ralf Schlatterbeck <schlatterbeck@users.sourceforge.net> |
|---|---|
| date | Fri, 09 Oct 2009 14:32:21 +0000 |
| parents | 9997b941dd6d |
| children | 13b3155869e0 |
line wrap: on
line diff
--- a/roundup/backends/__init__.py Fri Oct 09 14:00:50 2009 +0000 +++ b/roundup/backends/__init__.py Fri Oct 09 14:32:21 2009 +0000 @@ -31,7 +31,7 @@ 'mysql': ('MySQLdb',), 'postgresql': ('psycopg',), 'tsearch2': ('psycopg',), - 'sqlite': ('pysqlite', 'pysqlite2', 'sqlite3', '_sqlite3'), + 'sqlite': ('pysqlite', 'pysqlite2', 'sqlite3', '_sqlite3', 'sqlite'), } def get_backend(name):
