v16.1 - Hotfix for SDSetup

This commit is contained in:
Nichole Mattera 2020-05-06 06:36:43 -04:00 committed by GitHub
parent 7387d14ebd
commit 1db317c18e
No known key found for this signature in database
GPG key ID: 4AEE18F83AFDEB23

View file

@ -71,6 +71,7 @@ def move_contents_of_folder(source, dest):
for f in files:
if os.path.isdir(os.path.join(source, f)):
mkdir(os.path.join(dest, f))
move_contents_of_folder(os.path.join(source, f), os.path.join(dest, f))
else:
shutil.move(os.path.join(source, f), dest)