Merge pull request #46 from holgus103/master

Fixed ._ files problem on OS X. Credits to @holgus103
This commit is contained in:
Francesco Picasso 2020-12-28 23:18:10 +01:00 committed by GitHub
commit 7055a7c78c
No known key found for this signature in database
GPG Key ID: 4AEE18F83AFDEB23

2
kobackupdec.py Normal file → Executable file
View File

@ -877,7 +877,7 @@ def decrypt_backup(password, path_in, path_out, expandtar):
xml_files = path_in.glob('*.xml')
for entry in xml_files:
if entry.name != 'info.xml':
if entry.name != 'info.xml' and not entry.name.startswith('._'):
parse_generic_xml(entry, decrypt_info)
logging.debug(decrypt_info.dump())