We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
There was an error while loading. Please reload this page.
1 parent da2594c commit 717dfdcCopy full SHA for 717dfdc
firebase-dataconnect/ci/util.py
@@ -36,7 +36,7 @@ def fetch_pr_info(pr_number: int, github_repository: str) -> GitHubPrInfo:
36
gh_args = tuple(gh_args)
37
logging.info("Running command: %s", subprocess.list2cmdline(gh_args))
38
output_str = subprocess.check_output(gh_args, encoding="utf8", errors="replace") # noqa: S603
39
- logging.info("%s", output_str)
+ logging.info("%s", output_str.strip())
40
output = json.loads(output_str)
41
return GitHubPrInfo(
42
title=output["title"],
0 commit comments