diff --git a/photobooth.py b/photobooth.py index 783490b..cb0e30e 100755 --- a/photobooth.py +++ b/photobooth.py @@ -148,6 +148,9 @@ class Photobooth: except CameraException as e: self.handle_exception(e.message) + except Exception as e: + print("SERIOUS ERROR!") + self.handle_exception(e.message) def handle_gpio(self, channel): if channel in [ self.trigger_channel, self.shutdown_channel ]: