Merge pull request #671 from eht16/add_missing_format_arguments

Add missing format arguments for error message
This commit is contained in:
Khanh Ngo 2020-03-06 13:58:10 +07:00 committed by GitHub
commit 026dcead7f
No known key found for this signature in database
GPG key ID: 4AEE18F83AFDEB23

View file

@ -57,7 +57,7 @@ def fetch_remote(remote_url,
if r.status_code not in (200, 201, 204, 400, 409, 422):
r.raise_for_status()
except Exception as e:
msg = "Returned status {0} and content {1}"
msg = "Returned status {0} and content {1}".format(r.status_code, r.text)
raise RuntimeError('Error while fetching {0}. {1}'.format(
remote_url, msg))