Skip to content

Commit

Permalink
fix: fix wrong resolution of merge conflict (DEV-3161) (#726)
Browse files Browse the repository at this point in the history
  • Loading branch information
jnussbaum committed Jan 9, 2024
1 parent 808c01c commit c81c94d
Showing 1 changed file with 2 additions and 2 deletions.
4 changes: 2 additions & 2 deletions src/dsp_tools/cli/entry_point.py
Expand Up @@ -69,8 +69,8 @@ def run(args: list[str]) -> None:
print("\nThe process was terminated because of an Error:")
print(err.message)
sys.exit(1)
except Exception as err: # noqa: BLE001 (blind-except)
logger.error(err)
except Exception as err:
logger.exception(err)
print(InternalError())
sys.exit(1)

Expand Down

0 comments on commit c81c94d

Please sign in to comment.