Skip to content
Snippets Groups Projects
Commit 3b55aa13 authored by Ronald Jäpel's avatar Ronald Jäpel
Browse files

Fix ssh_to_http conversion

parent 7b478d84
No related branches found
No related tags found
No related merge requests found
def ssh_url_to_http_url(url): def ssh_url_to_http_url(url):
url.replace(":", "/").replace("git@", "https://").replace(".git", "") url = url.replace(":", "/").replace("git@", "https://").replace(".git", "")
return url return url
0% Loading or .
You are about to add 0 people to the discussion. Proceed with caution.
Finish editing this message first!
Please register or to comment