Mercurial > p > roundup > code
diff roundup/__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 | b4d655b2aacf |
| children | 20e9831fc58a |
line wrap: on
line diff
--- 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
