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 709c826 commit 4599a54Copy full SHA for 4599a54
run_release.py
@@ -252,7 +252,9 @@ def __init__(
252
print(f"- Normalized release tag: {release_tag.normalized()}")
253
print(f"- Git repo: {self.db['git_repo']}")
254
print(f"- SSH username: {self.db['ssh_user']}")
255
- print(f"- python.org API key: {self.db['auth_info']}")
+ user, key = self.db["auth_info"].split(":")
256
+ masked = "*" * (len(key) - 4) + key[-4:]
257
+ print(f"- python.org API key: {user}:{masked}")
258
print(f"- Sign with GPG: {self.db['sign_gpg']}")
259
print()
260
0 commit comments