mirror of
https://github.com/Z3Prover/z3
synced 2025-06-06 22:23:22 +00:00
fix exception handling for #1959
Signed-off-by: Nikolaj Bjorner <nbjorner@microsoft.com>
This commit is contained in:
parent
f591e0948a
commit
f5455ce2ac
1 changed files with 1 additions and 1 deletions
|
@ -718,7 +718,7 @@ def mk_install_tactic_cpp_internal(h_files_full_path, path):
|
||||||
_logger.error("Failed processing ADD_PROBE command at '{}'\n{}".format(
|
_logger.error("Failed processing ADD_PROBE command at '{}'\n{}".format(
|
||||||
fullname, line))
|
fullname, line))
|
||||||
raise e
|
raise e
|
||||||
except e:
|
except Exception as e:
|
||||||
_loggeer.error("Failed to read file {}\n".format(h_file))
|
_loggeer.error("Failed to read file {}\n".format(h_file))
|
||||||
raise e
|
raise e
|
||||||
# First pass will just generate the tactic factories
|
# First pass will just generate the tactic factories
|
||||||
|
|
Loading…
Add table
Add a link
Reference in a new issue