Skip to content

Commit 5bc34e4

Browse files
author
Richard Jones
committed
merge from HEAD
1 parent 5609b92 commit 5bc34e4

File tree

2 files changed

+5
-4
lines changed

2 files changed

+5
-4
lines changed

CHANGES.txt

Lines changed: 3 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -3,8 +3,9 @@ are given with the most recent entry first.
33

44
2004-??-?? 0.8.0b2
55
Fixed:
6-
- note about how to run roundup demo in Windows
7-
- fix API for templating utils extensions - remove "utils" arg
6+
- note about how to run roundup demo in Windows (sf bug 1082090)
7+
- fix API for templating utils extensions - remove "utils" arg (sf bug 1081981)
8+
- back_sqlite.py is missing "import time" (sf bug 1081959)
89

910

1011
2004-12-08 0.8.0b1

roundup/backends/back_sqlite.py

Lines changed: 2 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -1,4 +1,4 @@
1-
# $Id: back_sqlite.py,v 1.36 2004-10-31 09:57:10 a1s Exp $
1+
# $Id: back_sqlite.py,v 1.36.2.1 2004-12-14 23:23:35 richard Exp $
22
'''Implements a backend for SQLite.
33
44
See https://pysqlite.sourceforge.net/ for pysqlite info
@@ -9,7 +9,7 @@
99
'''
1010
__docformat__ = 'restructuredtext'
1111

12-
import os, base64, marshal, shutil
12+
import os, base64, marshal, shutil, time
1313

1414
from roundup import hyperdb, date, password
1515
from roundup.backends import locking

0 commit comments

Comments
 (0)