Commit 83f19dfc by devttys0

Updated plugin core to pass SystemError exceptions up the chain

parent f57a746c
......@@ -120,6 +120,8 @@ class Plugins(object):
raise e
except IgnoreFileException as e:
raise e
except SystemError as e:
raise e
except Exception as e:
binwalk.core.common.warning("%s.%s failed [%s]: '%s'" % (callback.__module__, callback.__name__, type(e), e))
......
Markdown is supported
0% or
You are about to add 0 people to the discussion. Proceed with caution.
Finish editing this message first!
Please register or to comment