Ignore:
Timestamp:
12 Jun 2009, 09:58:44 (15 years ago)
Author:
uli
Message:

Fix minor garbage.

File:
1 edited

Legend:

Unmodified
Added
Removed
  • waeup/branches/ulif-rewrite/src/waeup/university/facultycontainer.py

    r4268 r4269  
    8787
    8888class DepartmentCSVFile(CSVFile):
    89     """An abstraction of a CSV file containing faculties.
     89    """An abstraction of a CSV file containing departments.
    9090    """
    9191    grok.implements(IDepartmentCSVFile)
     
    109109        for row in self.csvfile.getData():
    110110            new_item = createObject(u'waeup.Department')
    111             #data = row.items()
    112111            faculty_code = row['faculty_code']
    113112            faculty = self.receiver[faculty_code]
Note: See TracChangeset for help on using the changeset viewer.