Make kitchen.text.converters.exception_to_* not swallow

general errors such as KeyboardInterrupt
Bug: https://fedorahosted.org/kitchen/ticket/9

Patch-Name: explicit_Exception_catching
This commit is contained in:
Simon Chopin 2013-04-30 18:27:15 +02:00 committed by Sergio Durigan Junior
parent 727e0eb7f3
commit 85b7e2bd26
1 changed files with 2 additions and 2 deletions

View File

@ -499,7 +499,7 @@ def exception_to_unicode(exc, converters=EXCEPTION_CONVERTERS):
for func in converters:
try:
msg = func(exc)
except:
except Exception:
pass
else:
break
@ -531,7 +531,7 @@ def exception_to_bytes(exc, converters=EXCEPTION_CONVERTERS):
for func in converters:
try:
msg = func(exc)
except:
except Exception:
pass
else:
break