Mercurial > p > roundup > code
changeset 3008:c5530df3aaa6
back_sqlite.py is missing "import time" [SF#1081959]
| author | Richard Jones <richard@users.sourceforge.net> |
|---|---|
| date | Tue, 14 Dec 2004 23:16:45 +0000 |
| parents | 50b0f8e98247 |
| children | 3a23308a8f57 |
| files | CHANGES.txt roundup/backends/back_sqlite.py |
| diffstat | 2 files changed, 5 insertions(+), 4 deletions(-) [+] |
line wrap: on
line diff
--- a/CHANGES.txt Tue Dec 14 23:06:57 2004 +0000 +++ b/CHANGES.txt Tue Dec 14 23:16:45 2004 +0000 @@ -3,8 +3,9 @@ 2004-??-?? 0.8.0b2 Fixed: -- note about how to run roundup demo in Windows -- fix API for templating utils extensions - remove "utils" arg +- note about how to run roundup demo in Windows (sf bug 1082090) +- fix API for templating utils extensions - remove "utils" arg (sf bug 1081981) +- back_sqlite.py is missing "import time" (sf bug 1081959) 2004-12-08 0.8.0b1
--- a/roundup/backends/back_sqlite.py Tue Dec 14 23:06:57 2004 +0000 +++ b/roundup/backends/back_sqlite.py Tue Dec 14 23:16:45 2004 +0000 @@ -1,4 +1,4 @@ -# $Id: back_sqlite.py,v 1.36 2004-10-31 09:57:10 a1s Exp $ +# $Id: back_sqlite.py,v 1.37 2004-12-14 23:16:45 richard Exp $ '''Implements a backend for SQLite. See https://pysqlite.sourceforge.net/ for pysqlite info @@ -9,7 +9,7 @@ ''' __docformat__ = 'restructuredtext' -import os, base64, marshal, shutil +import os, base64, marshal, shutil, time from roundup import hyperdb, date, password from roundup.backends import locking
