bat.pack.queued_copy → bat.pack.filesystem

This commit is contained in:
Sybren A. Stüvel 2018-03-09 17:04:29 +01:00
parent ea832cd666
commit 575a0921c1
2 changed files with 2 additions and 2 deletions

View File

@ -8,7 +8,7 @@ import typing
from blender_asset_tracer import trace, bpathlib, blendfile
from blender_asset_tracer.trace import result
from . import queued_copy, transfer
from . import filesystem, transfer
log = logging.getLogger(__name__)
@ -171,7 +171,7 @@ class Packer:
def _create_file_transferer(self) -> transfer.FileTransferer:
"""Create a FileCopier(), can be overridden in a subclass."""
return queued_copy.FileCopier()
return filesystem.FileCopier()
def _copy_files_to_target(self) -> None:
"""Copy all assets to the target directoy.