core: catch more exceptions for the purpose of halting

pull/681/head
matejcik 5 years ago committed by matejcik
parent 7cb125d1cb
commit 5ffa395dec

@ -42,7 +42,7 @@ async def bootscreen() -> None:
except (OSError, PinCancelled, SdProtectCancelled) as e:
if __debug__:
log.exception(__name__, e)
except Exception as e:
except BaseException as e:
utils.halt(e.__class__.__name__)

Loading…
Cancel
Save