8000
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 d96e3c1 commit e9681cdCopy full SHA for e9681cd
backport/util.py
@@ -20,7 +20,7 @@ def comment_on_pr(issue_number, message):
20
headers=request_headers,
21
json=data)
22
if response.status_code == requests.codes.created:
23
- print(f"Commented at {response.json()['url']}")
+ print(f"Commented at {response.json()['html_url']}")
24
else:
25
print(response.status_code)
26
print(response.text)
@@ -36,4 +36,4 @@ def is_cpython_repo():
36
subprocess.check_output(cmd.split(), stderr=subprocess.STDOUT)
37
except subprocess.SubprocessError:
38
return False
39
- return True
+ return True
0 commit comments