File tree Expand file tree Collapse file tree 3 files changed +7
-5
lines changed
Expand file tree Collapse file tree 3 files changed +7
-5
lines changed Original file line number Diff line number Diff line change @@ -13,6 +13,8 @@ Feature:
1313
1414Fixed:
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
18202005-02-17 0.8.1
Original file line number Diff line number Diff line change 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
Original file line number Diff line number Diff line change 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
2121from distutils .core import setup , Extension
2222from distutils .util import get_platform
@@ -326,7 +326,7 @@ def main():
326326This release introduces far too many features to list here so I've put
327327together 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
331331Some highlights:
332332
You can’t perform that action at this time.
0 commit comments