Skip to content

Commit 1ecc83a

Browse files
author
Richard Jones
committed
merge from maint branch
1 parent f8b4f7a commit 1ecc83a

File tree

4 files changed

+25
-4
lines changed

4 files changed

+25
-4
lines changed

CHANGES.txt

Lines changed: 6 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -6,6 +6,12 @@ Feature:
66
- support confirming registration by replying to the email (sf bug 763668)
77

88

9+
2003-10-?? 0.6.3
10+
Fixed:
11+
- Fixed detectors fix incorrectly fixed in bugfix release 0.6.2
12+
- Added note to upgrading doc for detectors fix in 0.6.2
13+
14+
915
2003-09-29 0.6.2
1016
Fixed:
1117
- cleaned up, clarified internal caching API in *dbm backends

doc/upgrading.txt

Lines changed: 15 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -18,6 +18,21 @@ be replaced with a call to Database.getuid().
1818

1919

2020

21+
Migrating from 0.6.x to 0.6.3
22+
=============================
23+
24+
0.6.3 Configuration
25+
-------------------
26+
27+
You will need to copy the file::
28+
29+
templates/classic/detectors/__init__.py
30+
31+
to your tracker's ``detectors`` directory, replacing the one already there.
32+
This fixes a couple of bugs in that file.
33+
34+
35+
2136
Migrating from 0.5 to 0.6
2237
=========================
2338

templates/classic/detectors/__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.3 2003-09-04 23:44:56 richard Exp $
18+
#$Id: __init__.py,v 1.4 2003-10-07 06:18:45 richard Exp $
1919

2020
import sys, os, imp
2121

@@ -31,7 +31,7 @@ def init(db):
3131
path = os.path.abspath(os.path.join(this_dir, filename))
3232
fp = open(path)
3333
try:
34-
module = imp.load_module(name, open(path), path,
34+
module = imp.load_module(name, fp, path,
3535
('.py', 'r', imp.PY_SOURCE))
3636
finally:
3737
fp.close()

templates/minimal/detectors/__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.3 2003-09-04 23:44:56 richard Exp $
18+
#$Id: __init__.py,v 1.4 2003-10-07 06:18:45 richard Exp $
1919

2020
import sys, os, imp
2121

@@ -31,7 +31,7 @@ def init(db):
3131
path = os.path.abspath(os.path.join(this_dir, filename))
3232
fp = open(path)
3333
try:
34-
module = imp.load_module(name, open(path), path,
34+
module = imp.load_module(name, fp, path,
3535
('.py', 'r', imp.PY_SOURCE))
3636
finally:
3737
fp.close()

0 commit comments

Comments
 (0)