Changes between Initial Version and Version 1 of Ticket #16377, comment 4


Ignore:
Timestamp:
Jul 7, 2011, 8:02:47 AM (13 years ago)
Author:
Jannis Leidel

Legend:

Unmodified
Added
Removed
Modified
  • Ticket #16377, comment 4

    initial v1  
    11Please don't use `has_key`. It's idiomatic to do:
    22{{{
    3 if 'delete_selected' in self.actions:
     3if 'delete_selected' in actions:
    44    # whatever
    55}}}
Back to Top