From 53aee68119b64a7a361d42c3e036c44096c32a97 Mon Sep 17 00:00:00 2001 From: Christine Kim <125395064+chkim-usgs@users.noreply.github.com> Date: Tue, 14 Jan 2025 09:55:59 -0500 Subject: [PATCH] Update pr_label_checker.py --- .github/pr_label_checker.py | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/.github/pr_label_checker.py b/.github/pr_label_checker.py index 4eb49d773d..01f6eb8884 100644 --- a/.github/pr_label_checker.py +++ b/.github/pr_label_checker.py @@ -45,7 +45,7 @@ def get_pr_attributes(response: Response) -> tuple: print(str(pull_response_json)) if not len(pull_response_json): # No PRs attributed to the commit - print(str(False) + "length=" + len(pull_response_json) + ", HELLO, response: " + str(pull_response_json) + pull_response_json) + print(str(False) + "length=" + str(len(pull_response_json)) + ", HELLO, response: " + str(pull_response_json) + pull_response_json) sys.exit(0) pull_number = pull_response_json[0].get("number") pull_body = pull_response_json[0].get("body")