Skip to content
This repository has been archived by the owner on Sep 15, 2021. It is now read-only.

Commit

Permalink
Merge branch 'master' into production
Browse files Browse the repository at this point in the history
  • Loading branch information
djmitche committed Apr 17, 2015
2 parents 09e9d97 + 6ad2e2e commit c6a6377
Showing 1 changed file with 4 additions and 0 deletions.
4 changes: 4 additions & 0 deletions mozharness/mozilla/tooltool.py
Original file line number Diff line number Diff line change
Expand Up @@ -36,6 +36,10 @@ def tooltool_fetch(self, manifest, bootstrap_cmd=None,

# get the tooltools servers from configuration
default_urls = self.config['tooltool_servers']
# add slashes (bug 1155630)
def add_slash(url):
return url if url.endswith('/') else (url + '/')
default_urls = [add_slash(u) for u in default_urls]
proxxy = Proxxy(self.config, self.log_obj)
proxxy_urls = proxxy.get_proxies_and_urls(default_urls)

Expand Down

0 comments on commit c6a6377

Please sign in to comment.