Reviewers: ,
Please review this at http://codereview.tryton.org/347001/ Affected files: M tryton/gui/window/wizard.py Index: tryton/gui/window/wizard.py =================================================================== --- a/tryton/gui/window/wizard.py +++ b/tryton/gui/window/wizard.py @@ -82,8 +82,9 @@ result = RPCExecute('wizard', self.action, 'execute', self.session_id, data, self.state, context=ctx) except RPCException, rpc_exception: - if not isinstance(rpc_exception.exception, - TrytonServerError): + if (not isinstance(rpc_exception.exception, + TrytonServerError) + or not self.screen): self.state = self.end_state break -- [email protected] mailing list
