From b84d4eb6b807824216915d55f367f62aae98fb82 Mon Sep 17 00:00:00 2001 From: 2Shirt <2xShirt@gmail.com> Date: Sun, 17 Mar 2019 20:22:50 -0600 Subject: [PATCH] Bugfix: typo --- .bin/Scripts/functions/update.py | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/.bin/Scripts/functions/update.py b/.bin/Scripts/functions/update.py index 1ff66160..d7904090 100644 --- a/.bin/Scripts/functions/update.py +++ b/.bin/Scripts/functions/update.py @@ -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)