Codebase list python-castellan / 3dab2cc
Merge "Correct castellan reraising of exception" Jenkins authored 7 years ago Gerrit Code Review committed 7 years ago
1 changed file(s) with 2 addition(s) and 2 deletion(s). Raw diff Collapse all Expand all
4242 message_arg = self.message
4343 try:
4444 self.message = message_arg % kwargs
45 except Exception as e:
45 except Exception:
4646 if _FATAL_EXCEPTION_FORMAT_ERRORS:
47 raise e
47 raise
4848 else:
4949 # at least get the core message out if something happened
5050 pass