Fixed ._ files problem on OS X

This commit is contained in:
Suchan Jakub 2020-12-05 21:43:24 +01:00
parent 662574bb45
commit 7a59614b7e

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())