From 21ccd4032c45588698f09648acdd32d7dd8a9667 Mon Sep 17 00:00:00 2001 From: Christian Clauss Date: Sat, 28 Sep 2024 17:35:50 +0200 Subject: [PATCH] chore: Fix typo in debug message (#245) --- poethepoet/executor/base.py | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/poethepoet/executor/base.py b/poethepoet/executor/base.py index 6aefd88da..71c7acf23 100644 --- a/poethepoet/executor/base.py +++ b/poethepoet/executor/base.py @@ -79,7 +79,7 @@ def __init__( self._is_windows = sys.platform == "win32" if POE_DEBUG: - print(f" . Initalizing {self.__class__.__name__}") + print(f" . Initializing {self.__class__.__name__}") @classmethod def works_with_context(cls, context: "RunContext") -> bool: