*** empty log message ***

svn path=/trunk/boinc/; revision=2234
This commit is contained in:
Karl Chen 2003-09-03 08:39:45 +00:00
parent 624ba8f895
commit 2ceaebe7d8
1 changed files with 0 additions and 8 deletions

View File

@ -307,14 +307,6 @@ class DatabaseObject:
if not key in columns:
raise ValueError("database '%s' object doesn't take argument '%s'"%(
self._table.table, key))
if key == 'instructorids': # KLUDGE
self.instructors = InstructorList(map(Instructor._table.__getitem__, value))
elif key == 'instructors': # KLUDGE
self.instructors = InstructorList(value)
elif key == 'frequencies': # KLUDGE
self.frequencies = str_to_dict(value)
elif key == 'department': # KLUDGE
self.department = Department(value)
elif key.endswith('id'):
xkey = key[:-2]
self.__dict__[xkey] = self.id_lookups[xkey]._table[value]