1
0
mirror of https://github.com/ARM-software/workload-automation.git synced 2024-10-05 18:31:12 +01:00

fw/getters: Fix typo

This commit is contained in:
Marc Bonnici 2020-06-26 11:34:34 +01:00 committed by setrofim
parent 684121e2e7
commit 08fcc7d30f

View File

@ -239,7 +239,7 @@ class Http(ResourceGetter):
index_url = urljoin(self.url, 'index.json')
response = self.geturl(index_url)
if response.status_code != http.client.OK:
message = 'Could not fetch "{}"; recieved "{} {}"'
message = 'Could not fetch "{}"; received "{} {}"'
self.logger.error(message.format(index_url,
response.status_code,
response.reason))