Changeset 4269
- Timestamp:
- 12 Jun 2009, 09:58:44 (16 years ago)
- File:
-
- 1 edited
Legend:
- Unmodified
- Added
- Removed
-
waeup/branches/ulif-rewrite/src/waeup/university/facultycontainer.py
r4268 r4269 87 87 88 88 class DepartmentCSVFile(CSVFile): 89 """An abstraction of a CSV file containing faculties.89 """An abstraction of a CSV file containing departments. 90 90 """ 91 91 grok.implements(IDepartmentCSVFile) … … 109 109 for row in self.csvfile.getData(): 110 110 new_item = createObject(u'waeup.Department') 111 #data = row.items()112 111 faculty_code = row['faculty_code'] 113 112 faculty = self.receiver[faculty_code]
Note: See TracChangeset for help on using the changeset viewer.