- todo.set_conditions(self.conn, self.form_data.get_all_int('condition'))
- todo.set_blockers(self.conn, self.form_data.get_all_int('blocker'))
- todo.set_enables(self.conn, self.form_data.get_all_int('enables'))
- todo.set_disables(self.conn, self.form_data.get_all_int('disables'))
- todo.is_done = len(self.form_data.get_all_str('done')) > 0
- todo.calendarize = len(self.form_data.get_all_str('calendarize')) > 0
- todo.comment = self.form_data.get_str('comment', ignore_strict=True)
+ todo.set_conditions(self.conn,
+ self._form_data.get_all_int('condition'))
+ todo.set_blockers(self.conn, self._form_data.get_all_int('blocker'))
+ todo.set_enables(self.conn, self._form_data.get_all_int('enables'))
+ todo.set_disables(self.conn, self._form_data.get_all_int('disables'))
+ todo.is_done = len(self._form_data.get_all_str('done')) > 0
+ todo.calendarize = len(self._form_data.get_all_str('calendarize')) > 0
+ todo.comment = self._form_data.get_str('comment', ignore_strict=True)