adding missing format string

This commit is contained in:
confidential 2015-07-31 09:52:35 -05:00 committed by rallytime
parent 98955057e0
commit 82b7e14a1f

View file

@ -259,7 +259,7 @@ def __save_artifact(artifact_url, target_file):
}
if os.path.isfile(target_file):
log.debug("File %s already exists, checking checksum...")
log.debug("File {0} already exists, checking checksum...".format(target_file))
checksum_url = artifact_url + ".sha1"
checksum_success, artifact_sum, checksum_comment = __download(checksum_url)