durusmail: qp: typo in Form. _get_default_action() ?
typo in Form. _get_default_action() ?
2006-05-09
2006-05-09
typo in Form. _get_default_action() ?
mario ruggier
2006-05-09
Form's __init__ sets the action with:

     def __init__(self,  ..., action=None, ...  ):
         self.action = action or self._get_default_action()

     def _get_default_action(self):
         query = get_request().get_path_query()

that would always return None... ?

reply