Changes between Initial Version and Version 1 of Ticket #16377, comment 4
- Timestamp:
- Jul 7, 2011, 8:02:47 AM (13 years ago)
Legend:
- Unmodified
- Added
- Removed
- Modified
-
Ticket #16377, comment 4
initial v1 1 1 Please don't use `has_key`. It's idiomatic to do: 2 2 {{{ 3 if 'delete_selected' in self.actions:3 if 'delete_selected' in actions: 4 4 # whatever 5 5 }}}