File tree Expand file tree Collapse file tree 2 files changed +5
-2
lines changed
Expand file tree Collapse file tree 2 files changed +5
-2
lines changed Original file line number Diff line number Diff line change 2828- fix setgid typo (sf bug 1171346)
2929- fix faulty find_template filename facility (sf bug 1163629)
3030- fix roundup-admin "export" so it creates the target dir if needed
31+ - "fix" roundup-admin "import" to not use "universal newline support" since
32+ the csv module appears to have its own ideas about such things (sf bug
33+ 1163890)
3134
3235
33362005-03-03 0.8.2
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.90 2005-04-13 06:55:44 richard Exp $
19+ # $Id: admin.py,v 1.91 2005-04-13 07:01:05 richard Exp $
2020
2121'''Administration commands for maintaining Roundup trackers.
2222'''
@@ -1126,7 +1126,7 @@ class colon_separated(csv.excel):
11261126 cl = self .get_class (classname )
11271127
11281128 # ensure that the properties and the CSV file headings match
1129- f = open (os .path .join (dir , file ), 'rU ' )
1129+ f = open (os .path .join (dir , file ), 'r ' )
11301130 reader = csv .reader (f , colon_separated )
11311131 file_props = None
11321132 maxid = 1
You can’t perform that action at this time.
0 commit comments