--- admin.py~ 2005-02-16 08:19:22.000000000 -0800 +++ admin.py 2005-02-16 09:19:27.000000000 -0800 @@ -1120,7 +1120,7 @@ # ensure that the properties and the CSV file headings match f = open(os.path.join(dir, file), 'rU') - reader = csv.reader(f, csv.colon_separated) + reader = csv.reader(f, colon_separated) file_props = None maxid = 1 # loop through the file and create a node for each entry @@ -1138,7 +1138,7 @@ # import the journals f = open(os.path.join(args[0], classname + '-journals.csv'), 'rU') - reader = csv.reader(f, csv.colon_separated) + reader = csv.reader(f, colon_separated) cl.import_journals(reader) f.close()