bugfix: detectar host ficticion de bitbucket

This commit is contained in:
jt
2025-11-02 12:13:26 -03:00
parent 26f65aa279
commit 6264062bff
+4
View File
@@ -299,6 +299,10 @@ def parse_url(url: str) -> list[str]:
else:
raise RuntimeError("Invalid url: " + url)
# Esto permite utilizar un Host ficticio si tenemos 2 cuentas de bitbucket (personal y trabajo)
if service.endswith(".bitbucket.org"):
service = "bitbucket.org"
return [service, repository]