From aac20a53636debca7f1a03572c29b4cb1888e48a Mon Sep 17 00:00:00 2001 From: Jelle Bouwman <32744870+jellebouwman@users.noreply.github.com> Date: Mon, 20 Jun 2022 08:41:39 +0700 Subject: [PATCH] Change 'checkouted' to 'checked out' --- gto/exceptions.py | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/gto/exceptions.py b/gto/exceptions.py index 4d27738e..29271501 100644 --- a/gto/exceptions.py +++ b/gto/exceptions.py @@ -28,7 +28,7 @@ def __init__(self, path) -> None: class NoFile(GTOException): - _message = "No file/folder found in '{path}' for checkouted commit" + _message = "No file/folder found in '{path}' for checked out commit" def __init__(self, path) -> None: self.message = self._message.format(path=path)