added general exception handler
This commit is contained in:
parent
5fb8692eb6
commit
09439b4a0d
|
@ -316,6 +316,9 @@ def init():
|
||||||
except Exception as e:
|
except Exception as e:
|
||||||
logger.error("Error: %s", e, exc_info=True)
|
logger.error("Error: %s", e, exc_info=True)
|
||||||
bso = None
|
bso = None
|
||||||
|
except Exception as e:
|
||||||
|
logger.error("Error: %s", e, exc_info=True)
|
||||||
|
bso = None
|
||||||
else:
|
else:
|
||||||
try:
|
try:
|
||||||
bso = ctypes.CDLL(os.path.join(paths.codePath(), "bitmsghash", bitmsglib))
|
bso = ctypes.CDLL(os.path.join(paths.codePath(), "bitmsghash", bitmsglib))
|
||||||
|
|
Loading…
Reference in New Issue
Block a user