Skip to content

Commit c6baa0c

Browse files
author
Richard Jones
committed
merge from maint-0-8
1 parent a52c9a5 commit c6baa0c

File tree

3 files changed

+7
-5
lines changed

3 files changed

+7
-5
lines changed

CHANGES.txt

Lines changed: 2 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -13,6 +13,8 @@ Feature:
1313

1414
Fixed:
1515
- added content to ZRoundup refresh.txt file (sf bug 1147622)
16+
- fix invalid reference to csv.colon_separated
17+
- correct URL to What's New in setup.py meta-data
1618

1719

1820
2005-02-17 0.8.1

roundup/admin.py

Lines changed: 3 additions & 3 deletions
Original file line numberDiff line numberDiff line change
@@ -16,7 +16,7 @@
1616
# BASIS, AND THERE IS NO OBLIGATION WHATSOEVER TO PROVIDE MAINTENANCE,
1717
# SUPPORT, UPDATES, ENHANCEMENTS, OR MODIFICATIONS.
1818
#
19-
# $Id: admin.py,v 1.88 2005-02-16 14:22:16 a1s Exp $
19+
# $Id: admin.py,v 1.89 2005-02-28 03:14:49 richard Exp $
2020

2121
'''Administration commands for maintaining Roundup trackers.
2222
'''
@@ -1123,7 +1123,7 @@ class colon_separated(csv.excel):
11231123

11241124
# ensure that the properties and the CSV file headings match
11251125
f = open(os.path.join(dir, file), 'rU')
1126-
reader = csv.reader(f, csv.colon_separated)
1126+
reader = csv.reader(f, colon_separated)
11271127
file_props = None
11281128
maxid = 1
11291129
# loop through the file and create a node for each entry
@@ -1141,7 +1141,7 @@ class colon_separated(csv.excel):
11411141

11421142
# import the journals
11431143
f = open(os.path.join(args[0], classname + '-journals.csv'), 'rU')
1144-
reader = csv.reader(f, csv.colon_separated)
1144+
reader = csv.reader(f, colon_separated)
11451145
cl.import_journals(reader)
11461146
f.close()
11471147

setup.py

Lines changed: 2 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -16,7 +16,7 @@
1616
# BASIS, AND THERE IS NO OBLIGATION WHATSOEVER TO PROVIDE MAINTENANCE,
1717
# SUPPORT, UPDATES, ENHANCEMENTS, OR MODIFICATIONS.
1818
#
19-
# $Id: setup.py,v 1.79 2005-02-15 23:10:52 richard Exp $
19+
# $Id: setup.py,v 1.80 2005-02-28 03:14:48 richard Exp $
2020

2121
from distutils.core import setup, Extension
2222
from distutils.util import get_platform
@@ -326,7 +326,7 @@ def main():
326326
This release introduces far too many features to list here so I've put
327327
together a What's New page:
328328
329-
http://roundup.sourceforge.net/doc-0.7/whatsnew-0.7.html
329+
http://roundup.sourceforge.net/doc-0.8/whatsnew-0.8.html
330330
331331
Some highlights:
332332

0 commit comments

Comments
 (0)