We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
There was an error while loading. Please reload this page.
1 parent b5c44b6 commit 4c6a8deCopy full SHA for 4c6a8de
roundup/admin.py
@@ -16,7 +16,7 @@
16
# BASIS, AND THERE IS NO OBLIGATION WHATSOEVER TO PROVIDE MAINTENANCE,
17
# SUPPORT, UPDATES, ENHANCEMENTS, OR MODIFICATIONS.
18
#
19
-# $Id: admin.py,v 1.43 2003-03-16 22:24:54 kedder Exp $
+# $Id: admin.py,v 1.44 2003-03-18 23:15:29 richard Exp $
20
21
'''Administration commands for maintaining Roundup trackers.
22
'''
@@ -980,6 +980,10 @@ class to import.
980
from roundup import hyperdb
981
982
for file in os.listdir(args[0]):
983
+ # we only care about CSV files
984
+ if not file.endswith('.csv'):
985
+ continue
986
+
987
f = open(os.path.join(args[0], file))
988
989
# get the classname
0 commit comments