Bugfix: typo

This commit is contained in:
2Shirt 2019-03-17 20:22:50 -06:00
parent 1235269da0
commit b84d4eb6b8
Signed by: 2Shirt
GPG key ID: 152FAC923B0E132C

View file

@ -79,7 +79,7 @@ def download_windows_updates():
for winver, v2 in v.items():
for arch, url in v2.items():
name = 'KB{}-Windows{}-x{}.msu'.format(kb, winver, arch)
if not os.path.exists(r'{}\{}'.format(dest, name):
if not os.path.exists(r'{}\{}'.format(dest, name)):
download_generic(dest, name, url)