Revert bug in updater.py preventing new files from being created

This commit is contained in:
Ozzieisaacs 2019-09-24 19:00:47 +02:00
parent d7ea5bb9d7
commit e31df16309
1 changed files with 2 additions and 1 deletions

View File

@ -168,8 +168,9 @@ class Updater(threading.Thread):
for file_ in files:
src_file = os.path.join(src_dir, file_)
dst_file = os.path.join(dst_dir, file_)
permission = os.stat(dst_file)
if os.path.exists(dst_file):
if change_permissions:
permission = os.stat(dst_file)
log.debug('Remove file before copy: %s', dst_file)
os.remove(dst_file)
else: