auto-t: allow copy_to_storage to copy directories

This commit is contained in:
James Prestwood 2019-06-27 08:57:33 -07:00 committed by Denis Kenzior
parent 25ec69b358
commit 1a2f10dacd
1 changed files with 5 additions and 1 deletions

View File

@ -960,7 +960,11 @@ class IWD(AsyncOpAbstract):
import shutil
assert not os.path.isabs(source)
shutil.copy(source, IWD_STORAGE_DIR)
if os.path.isdir(source):
shutil.copytree(source, IWD_STORAGE_DIR + "/%s" % source)
else:
shutil.copy(source, IWD_STORAGE_DIR)
@staticmethod
def remove_from_storage(file_name):