The last line of the model code currently reads;
tags = property(_get_tags, _set_tags)
which results in an undefined module error.
It should read;
tags = property('_get_tags', '_set_tags')
which now works perfectly.
Original issue reported on code.google.com by douglasj...@gmail.com on 19 Jun 2007 at 4:26
Original issue reported on code.google.com by
douglasj...@gmail.com
on 19 Jun 2007 at 4:26