From 4c23b6fd079010ff58011a85734c205e5a760f31 Mon Sep 17 00:00:00 2001 From: Slashformotion <45801817+slashformotion@users.noreply.github.com> Date: Sat, 21 Oct 2023 23:36:30 +0200 Subject: [PATCH] add context to error --- tbump/file_bumper.py | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/tbump/file_bumper.py b/tbump/file_bumper.py index dab43cd..2fd207c 100644 --- a/tbump/file_bumper.py +++ b/tbump/file_bumper.py @@ -112,7 +112,7 @@ def __init__(self, *, src: str): self.src = src def print_error(self) -> None: - ui.error(self.src, "does not exist") + ui.error("the file", self.src, "does not exist") class CurrentVersionNotFound(Error):