Searched refs:action_name (Results 1 – 1 of 1) sorted by relevance
113 def _action_exists(cls, action_name): argument117 return action_name in cls._action_map130 for action_name in action_list:131 if not cls._action_exists(action_name):132 not_found.append(action_name)150 def _perform_action(self, action_name, *args, **kwargs): argument152 if action_name not in self._action_map:154 % action_name)156 method = self._action_map[action_name]