You signed in with another tab or window. Reload to refresh your session.You signed out in another tab or window. Reload to refresh your session.You switched accounts on another tab or window. Reload to refresh your session.Dismiss alert
cherry_picker runs git config --get remote.origin.url, which returns the above url, and then runs username = result.replace(":", "/").split("/")[-2]. This returns cpython, which means that I have to manually edit the URL on every backport.
cherry_picker should instead trim any trailing slash.
A
The text was updated successfully, but these errors were encountered:
I have my remote origin set to
https://github.com/AA-Turner/cpython/
.cherry_picker
runsgit config --get remote.origin.url
, which returns the above url, and then runsusername = result.replace(":", "/").split("/")[-2]
. This returnscpython
, which means that I have to manually edit the URL on every backport.cherry_picker
should instead trim any trailing slash.A
The text was updated successfully, but these errors were encountered: