From fd7b0840cd88a5496a6a4b2f67f32893814fd36c Mon Sep 17 00:00:00 2001 From: Caohongtao Date: Tue, 24 Sep 2024 05:37:15 +0000 Subject: [PATCH] code: fix the spelling mistake * fix the spelling mistake about logging info Signed-off-by: Caohongtao --- src/oebuild/ogit.py | 4 ++-- 1 file changed, 2 insertions(+), 2 deletions(-) diff --git a/src/oebuild/ogit.py b/src/oebuild/ogit.py index b67447e..b8101ec 100644 --- a/src/oebuild/ogit.py +++ b/src/oebuild/ogit.py @@ -99,9 +99,9 @@ class OGit: else: repo.git.checkout(version) except GitCommandError: - logger.error("update faild") + logger.error("update failed") return False - logger.info("Fetching into %s successful\n", self._repo_dir) + logger.info("Fetch into %s successful\n", self._repo_dir) return True @staticmethod -- Gitee