File tree Expand file tree Collapse file tree 3 files changed +12
-1
lines changed
Expand file tree Collapse file tree 3 files changed +12
-1
lines changed Original file line number Diff line number Diff line change @@ -6,6 +6,7 @@ are given with the most recent entry first.
66- fixed sqlite rollback/caching bug (sf bug 689383)
77- fixed rdbms table update detection logic (sf bug 703297)
88- required String properties not being flagged (thanks Ajit George)
9+ - only look for CSV files when importing (thanks Dan Grassi)
910
1011
11122003-02-27 0.5.6
Original file line number Diff line number Diff line change @@ -55,24 +55,30 @@ Duncan Booth,
5555Seb Brezel,
5656Titus Brown,
5757Roch'e Compaan,
58+ Hernan Martinez Foffani,
5859Ajit George,
60+ Dan Grassi,
5961Engelbert Gruber,
6062Juergen Hermann,
6163Tobias Hunger,
6264James Kew,
6365Sheila King,
66+ Bastian Kleineidam,
6467Detlef Lannert,
6568Andrey Lebedev,
6669Gordon McMillan,
6770Patrick Ohly,
71+ Luke Opperman,
6872Will Partain,
6973Bernhard Reiter,
7074John P. Rouillard,
75+ Florian Schulze,
7176Dougal Scott,
7277Stefan Seefeld,
7378Jeffrey P Shell,
7479Joel Shprentz,
7580Terrel Shumway,
81+ Nathaniel Smith,
7682Mike Thompson.
7783
7884
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.35.2.1 2003-02-06 05:44:49 richard Exp $
19+ # $Id: admin.py,v 1.35.2.2 2003-03-18 23:19:22 richard Exp $
2020
2121'''Administration commands for maintaining Roundup trackers.
2222'''
@@ -939,6 +939,10 @@ class to import.
939939 from roundup import hyperdb
940940
941941 for file in os .listdir (args [0 ]):
942+ # we only care about CSV files
943+ if not file .endswith ('.csv' ):
944+ continue
945+
942946 f = open (os .path .join (args [0 ], file ))
943947
944948 # get the classname
You can’t perform that action at this time.
0 commit comments