mirror of
https://github.com/RealityNet/kobackupdec.git
synced 2025-04-05 19:41:38 +08:00
Merge pull request #46 from holgus103/master
Fixed ._ files problem on OS X. Credits to @holgus103
This commit is contained in:
commit
7055a7c78c
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