Changeset 3665
- Timestamp:
- 05/12/08 16:52:12 (5 months ago)
- Files:
Legend:
- Unmodified
- Added
- Removed
- Modified
- Copied
- Moved
ticketvalidatorplugin/0.11/src/ticketvalidator/core.py
r3662 r3665 53 53 state = self._get_state(req, ticket) 54 54 55 # state not changed, no need to re-check56 if state is None:57 return []58 59 55 required_fields = self.config.getlist('ticketvalidator', 60 56 state + '.required') … … 75 71 action_changes.update(controller.get_ticket_changes(req, ticket, action)) 76 72 77 return 'status' in action_changes and action_changes['status'] or None73 return 'status' in action_changes and action_changes['status'] or ticket['status'] 78 74 79 75 def _get_action_controllers(self, req, ticket, action):
