Skip to content

Commit

Permalink
And another one
Browse files Browse the repository at this point in the history
  • Loading branch information
Christopher Rink authored and Christopher Rink committed Jan 31, 2024
1 parent a04a41c commit 7692a6b
Showing 1 changed file with 1 addition and 2 deletions.
3 changes: 1 addition & 2 deletions src/basilisp/cli.py
Original file line number Diff line number Diff line change
Expand Up @@ -4,7 +4,6 @@
import os
import sys
import textwrap
import traceback
import types
from pathlib import Path
from typing import Any, Callable, Optional, Sequence, Type
Expand Down Expand Up @@ -459,7 +458,7 @@ def repl(
repl_module.mark_exception(e)
continue
except Exception as e: # pylint: disable=broad-exception-caught
traceback.print_exception(Exception, e, e.__traceback__)
runtime.basilisp_except_hook(type(e), e, e.__traceback__)
repl_module.mark_exception(e)
continue

Expand Down

0 comments on commit 7692a6b

Please sign in to comment.