Changeset 4340 for waeup/branches/ulif-rewrite
- Timestamp:
- 23 Jun 2009, 10:06:45 (15 years ago)
- File:
-
- 1 edited
Legend:
- Unmodified
- Added
- Removed
-
waeup/branches/ulif-rewrite/src/waeup/university/facultycontainer.py
r4335 r4340 7 7 from zope.exceptions import DuplicationError 8 8 from zope.interface import implementedBy 9 from waeup.csvfile import CSVFile 9 from waeup.csvfile import CSVFile, toBool 10 10 from waeup.csvfile.interfaces import ICSVFile 11 11 from waeup.interfaces import IFacultyContainer, IFaculty, IWAeUPCSVImporter … … 250 250 del row['certificate_code'] 251 251 252 # Type casts... 253 row['core_or_elective'] = toBool(row['core_or_elective']) 254 252 255 cert.addCourseRef(course, **row) 253 256 return
Note: See TracChangeset for help on using the changeset viewer.