Fix T53782: Can't bundle blend file with image sequences

Differential revision: D3016
This commit is contained in:
Isaac Weaver
2019-04-15 10:56:22 +02:00
committed by Sybren A. Stüvel
parent 6e69e2c6d9
commit a910ea70f0

View File

@@ -415,7 +415,7 @@ def pack(
path_copy_files.add((path_src, path_dst)) path_copy_files.add((path_src, path_dst))
for file_list in ( for file_list in (
blendfile_path_walker.utils.find_sequence_paths(path_src) if fp.is_sequence else (), blendfile_path_walker.utils.find_sequence_paths(path_src, False) if fp.is_sequence else (),
fp.files_siblings(), fp.files_siblings(),
): ):