Fix for blendfile walker iterating over same paths twice

also fixes sha1 checks
This commit is contained in:
2014-11-04 16:18:16 +01:00
parent 49cdaa3b5d
commit 23cb474214
3 changed files with 5 additions and 5 deletions

View File

@@ -213,7 +213,8 @@ class FilePath:
if sub_block is not None:
yield from block_expand(sub_block, sub_block.code)
else:
yield block
if code == b'ID':
yield block
else:
expand_codes = None