From 90d3181dec32e8b3b205c34463b51f14b9cba2d9 Mon Sep 17 00:00:00 2001 From: Jakub Kadlcik Date: Sun, 6 Aug 2023 21:56:58 +0200 Subject: [PATCH] rpmbuild: change some fedora-review print statements to log.info --- rpmbuild/copr_rpmbuild/automation/fedora_review.py | 4 ++-- 1 file changed, 2 insertions(+), 2 deletions(-) diff --git a/rpmbuild/copr_rpmbuild/automation/fedora_review.py b/rpmbuild/copr_rpmbuild/automation/fedora_review.py index 08ee98fff..2802416d9 100644 --- a/rpmbuild/copr_rpmbuild/automation/fedora_review.py +++ b/rpmbuild/copr_rpmbuild/automation/fedora_review.py @@ -77,5 +77,5 @@ def _filter_results_directory(self): except FileNotFoundError: pass shutil.rmtree(srcdir) - print("Moving the results into `fedora-review' directory.") - print("Review template in: {}".format(os.path.join(dstdir, results[0]))) + self.log.info("Moving the results into `fedora-review' directory.") + self.log.info("Review template in: %s", os.path.join(dstdir, results[0]))