mirror of
https://github.com/RealityNet/kobackupdec.git
synced 2025-04-04 23:06:29 +08:00
Fixed ._ files problem on OS X
This commit is contained in:
parent
662574bb45
commit
7a59614b7e
2
kobackupdec.py
Normal file → Executable file
2
kobackupdec.py
Normal file → Executable 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())
|
||||
|
Loading…
x
Reference in New Issue
Block a user