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.
2 parents 95b9a11 + bcd8a6e commit 7edf4b9Copy full SHA for 7edf4b9
jupyter_releaser/python.py
@@ -74,8 +74,8 @@ def get_pypi_token(release_url):
74
for line in pypi_token_map.splitlines():
75
name, _, token = line.partition(",")
76
if name == repo_name:
77
- twine_pwd = token
78
- util.log("Found PYPI token")
+ twine_pwd = token.strip()
+ util.log(f"Found PYPI token in map ending in {twine_pwd[-5:]}")
79
elif twine_pwd:
80
util.log("Using PYPI token from PYPI_TOKEN")
81
else:
0 commit comments