From 4eceb79c5e4e9800407f273b54e0f25fdfbd8ab9 Mon Sep 17 00:00:00 2001 From: Tomas Kopecek Date: Mon, 4 Dec 2023 10:33:18 +0100 Subject: [PATCH] fix typo --- kojihub/kojihub.py | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/kojihub/kojihub.py b/kojihub/kojihub.py index 935a1ee6..4d91c712 100644 --- a/kojihub/kojihub.py +++ b/kojihub/kojihub.py @@ -6615,7 +6615,7 @@ class CG_Importer(object): path = koji.pathinfo.build(self.buildinfo) if os.path.lexists(path): if delete: - self.log_warning("Deleting build directory: %s", path) + self.log_warning("Deleting build directory: %s" % path) koji.util.rmtree(path) else: raise koji.GenericError("Destination directory already exists: %s" % path)