mirror of
https://github.com/evilhero/mylar
synced 2024-12-26 01:26:50 +00:00
FIX:(#853) Incorrectly tallying .AppleDouble files when file-checking
This commit is contained in:
parent
fa1168d9d0
commit
d03680f29e
1 changed files with 7 additions and 4 deletions
|
@ -997,6 +997,9 @@ def traverse_directories(dir):
|
||||||
direc = ''
|
direc = ''
|
||||||
else:
|
else:
|
||||||
direc = dirname
|
direc = dirname
|
||||||
|
if '.AppleDouble' in direc:
|
||||||
|
#Ignoring MAC OS Finder directory of cached files (/.AppleDouble/<name of file(s)>)
|
||||||
|
continue
|
||||||
|
|
||||||
filelist.append({"directory": direc,
|
filelist.append({"directory": direc,
|
||||||
"filename": fname})
|
"filename": fname})
|
||||||
|
|
Loading…
Reference in a new issue