Merge pull request #6 from lp4n6/patch-1

Update kobackupdec.py
This commit is contained in:
Francesco Picasso 2020-01-07 18:32:07 +01:00 committed by GitHub
commit 96a9992053
No known key found for this signature in database
GPG Key ID: 4AEE18F83AFDEB23

View File

@ -542,7 +542,7 @@ def main(password, backup_path_in, dest_path_out):
for entry in done_list:
enc_files.remove(entry)
logging.info('copying unmanged files to destination...')
logging.info('copying unmanaged files to destination...')
data_unk_dir = dest_path_out.absolute().joinpath('misc')
data_unk_dir.mkdir(parents=True)
@ -576,7 +576,7 @@ def main(password, backup_path_in, dest_path_out):
for entry in enc_files:
logging.warning('ENC file not handled: %s', entry.name)
for entry in enc_files:
for entry in unk_files:
logging.warning('UNK file not handled: %s', entry.name)
# --- entry point and parameters checks ---------------------------------------