aboutsummaryrefslogtreecommitdiff
path: root/infra/utils.py
diff options
context:
space:
mode:
Diffstat (limited to 'infra/utils.py')
-rw-r--r--infra/utils.py7
1 files changed, 6 insertions, 1 deletions
diff --git a/infra/utils.py b/infra/utils.py
index 795fbcddf..d8ade3891 100644
--- a/infra/utils.py
+++ b/infra/utils.py
@@ -158,4 +158,9 @@ def url_join(*url_parts):
def gs_url_to_https(url):
"""Converts |url| from a GCS URL (beginning with 'gs://') to an HTTPS one."""
- return url.replace('gs://', GCS_BASE_URL)
+ return url_join(GCS_BASE_URL, remove_prefix(url, 'gs://'))
+
+
+def remove_prefix(string, prefix):
+ """Returns |string| without the leading substring |prefix|."""
+ return string[len(prefix):]