Skip to content

Commit ede1c61

Browse files
author
Richard Jones
committed
sqlite module detection was broken for python 2.5 compiled w/o sqlite support
1 parent 73c20a7 commit ede1c61

File tree

3 files changed

+11
-5
lines changed

3 files changed

+11
-5
lines changed

CHANGES.txt

Lines changed: 7 additions & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -1,7 +1,13 @@
11
This file contains the changes to the Roundup system over time. The entries
22
are given with the most recent entry first.
33

4-
2006-??-?? 1.2.1
4+
2006-??-?? 1.2.2
5+
Fixed:
6+
- sqlite module detection was broken for python 2.5 compiled without sqlite
7+
support.
8+
9+
10+
2006-10-07 1.2.1
511
Fixed:
612
- E-mail subject line prefix delimiter configuration was being ignored.
713
- Password confirm field in user editing.

roundup/__init__.py

Lines changed: 2 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -15,7 +15,7 @@
1515
# BASIS, AND THERE IS NO OBLIGATION WHATSOEVER TO PROVIDE MAINTENANCE,
1616
# SUPPORT, UPDATES, ENHANCEMENTS, OR MODIFICATIONS.
1717
#
18-
# $Id: __init__.py,v 1.41 2006-10-05 23:08:20 richard Exp $
18+
# $Id: __init__.py,v 1.42 2006-10-09 23:49:32 richard Exp $
1919

2020
'''Roundup - issue tracking for knowledge workers.
2121
@@ -68,6 +68,6 @@
6868
'''
6969
__docformat__ = 'restructuredtext'
7070

71-
__version__ = '1.2.1'
71+
__version__ = '1.2.2'
7272

7373
# vim: set filetype=python ts=4 sw=4 et si

roundup/backends/__init__.py

Lines changed: 2 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -15,7 +15,7 @@
1515
# BASIS, AND THERE IS NO OBLIGATION WHATSOEVER TO PROVIDE MAINTENANCE,
1616
# SUPPORT, UPDATES, ENHANCEMENTS, OR MODIFICATIONS.
1717
#
18-
# $Id: __init__.py,v 1.38 2006-10-04 02:58:10 richard Exp $
18+
# $Id: __init__.py,v 1.39 2006-10-09 23:49:32 richard Exp $
1919

2020
'''Container for the hyperdb storage backend implementations.
2121
'''
@@ -31,7 +31,7 @@
3131
'mysql': ('MySQLdb',),
3232
'postgresql': ('psycopg',),
3333
'tsearch2': ('psycopg',),
34-
'sqlite': ('pysqlite', 'pysqlite2', 'sqlite3'),
34+
'sqlite': ('pysqlite', 'pysqlite2', 'sqlite3', '_sqlite3'),
3535
}
3636

3737
def get_backend(name):

0 commit comments

Comments
 (0)