diff options
| -rw-r--r-- | exceptions.py | 2 |
1 files changed, 1 insertions, 1 deletions
diff --git a/exceptions.py b/exceptions.py index 98395ac..229ec88 100644 --- a/exceptions.py +++ b/exceptions.py @@ -5,6 +5,6 @@ class InterpretPanic(NebPanic): def __init__(self, sym, msg, arg=None): big_message = f"[{sym.line}] '{sym.name}': {msg}" if arg is not None: - big_message += f" ({arg})" + big_message += f" (got {arg})" super().__init__(big_message) |
