From e6093a7835146c28ff5166ffc8b399ae977540cf Mon Sep 17 00:00:00 2001 From: Milan Kolar Date: Thu, 23 Sep 2021 09:24:31 +0100 Subject: [PATCH] (fix) double print in ci tag --- tools/ci_tools.py | 2 -- 1 file changed, 2 deletions(-) diff --git a/tools/ci_tools.py b/tools/ci_tools.py index 69f5158bb3..bbe0c699d1 100644 --- a/tools/ci_tools.py +++ b/tools/ci_tools.py @@ -15,13 +15,11 @@ def get_release_type_github(Log, github_token): repo = g.get_repo("pypeclub/OpenPype") for line in Log.splitlines(): - print(line) match = re.search("pull request #(\d+)", line) if match: pr_number = match.group(1) pr = repo.get_pull(int(pr_number)) for label in pr.labels: - print(label.name) if label.name in minor_labels: return ("minor") elif label.name in patch_labels: