mirror of
https://github.com/ynput/ayon-core.git
synced 2025-12-25 05:14:40 +01:00
use speedcopy
This commit is contained in:
parent
3576cb9564
commit
3371e39c83
1 changed files with 2 additions and 3 deletions
|
|
@ -2,7 +2,6 @@ import os
|
|||
import re
|
||||
import copy
|
||||
import json
|
||||
import shutil
|
||||
|
||||
from abc import ABCMeta, abstractmethod
|
||||
import six
|
||||
|
|
@ -18,7 +17,7 @@ from openpype.lib import (
|
|||
get_decompress_dir,
|
||||
decompress
|
||||
)
|
||||
import tempfile
|
||||
import speedcopy
|
||||
|
||||
|
||||
class ExtractReview(pyblish.api.InstancePlugin):
|
||||
|
|
@ -700,7 +699,7 @@ class ExtractReview(pyblish.api.InstancePlugin):
|
|||
staging_dir,
|
||||
("{}{:0" + str(col.padding) + "d}{}").format(
|
||||
col.head, frame, col.tail))
|
||||
shutil.copy2(file, hole)
|
||||
speedcopy.copyfile(file, hole)
|
||||
files_to_clean.append(hole)
|
||||
|
||||
return files_to_clean
|
||||
|
|
|
|||
Loading…
Add table
Add a link
Reference in a new issue