From a910ea70f044e71b3c7e6f8adec25a37e365a97b Mon Sep 17 00:00:00 2001 From: Isaac Weaver Date: Mon, 15 Apr 2019 10:56:22 +0200 Subject: [PATCH] Fix T53782: Can't bundle blend file with image sequences Differential revision: D3016 --- bam/blend/blendfile_pack.py | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/bam/blend/blendfile_pack.py b/bam/blend/blendfile_pack.py index 63eb071..c2ea519 100755 --- a/bam/blend/blendfile_pack.py +++ b/bam/blend/blendfile_pack.py @@ -415,7 +415,7 @@ def pack( path_copy_files.add((path_src, path_dst)) 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(), ):