Mercurial > p > roundup > code
changeset 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 | b11142bb2aa2 |
| children | b476fef16ccc |
| files | CHANGES.txt roundup/__init__.py roundup/backends/__init__.py |
| diffstat | 3 files changed, 11 insertions(+), 5 deletions(-) [+] |
line wrap: on
line diff
--- a/CHANGES.txt Sat Oct 07 03:03:29 2006 +0000 +++ b/CHANGES.txt Mon Oct 09 23:49:32 2006 +0000 @@ -1,7 +1,13 @@ This file contains the changes to the Roundup system over time. The entries are given with the most recent entry first. -2006-??-?? 1.2.1 +2006-??-?? 1.2.2 +Fixed: +- sqlite module detection was broken for python 2.5 compiled without sqlite + support. + + +2006-10-07 1.2.1 Fixed: - E-mail subject line prefix delimiter configuration was being ignored. - Password confirm field in user editing.
--- a/roundup/__init__.py Sat Oct 07 03:03:29 2006 +0000 +++ b/roundup/__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.41 2006-10-05 23:08:20 richard Exp $ +# $Id: __init__.py,v 1.42 2006-10-09 23:49:32 richard Exp $ '''Roundup - issue tracking for knowledge workers. @@ -68,6 +68,6 @@ ''' __docformat__ = 'restructuredtext' -__version__ = '1.2.1' +__version__ = '1.2.2' # vim: set filetype=python ts=4 sw=4 et si
--- 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):
