From 67caeb1c73bb1c9f7c7a8a6a7949f3359dfd62dd Mon Sep 17 00:00:00 2001 From: lp4n6 <58804681+lp4n6@users.noreply.github.com> Date: Thu, 12 Dec 2019 08:20:25 +0100 Subject: [PATCH] Update kobackupdec.py Two (obvious) typos to correct. --- kobackupdec.py | 4 ++-- 1 file changed, 2 insertions(+), 2 deletions(-) diff --git a/kobackupdec.py b/kobackupdec.py index c54e2dc..6596ed6 100644 --- a/kobackupdec.py +++ b/kobackupdec.py @@ -541,7 +541,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) @@ -575,7 +575,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 ---------------------------------------