fix argument type in format string
Argument is a string, not a float.
This commit is contained in:
parent
8cca853218
commit
3d7a6af560
1 changed files with 1 additions and 1 deletions
|
|
@ -323,7 +323,7 @@ class WindowsBuild(object):
|
|||
elif fileinfo['checksum_type'] == 'md5':
|
||||
checksum = hashlib.md5()
|
||||
else:
|
||||
raise BuildError('Unknown checksum type %s for %f' % (
|
||||
raise BuildError('Unknown checksum type %s for %s' % (
|
||||
fileinfo['checksum_type'],
|
||||
os.path.basename(fileinfo['localpath'])))
|
||||
with open(destpath, 'w') as destfile:
|
||||
|
|
|
|||
Loading…
Add table
Add a link
Reference in a new issue