Skip to content
Snippets Groups Projects
Commit d2dc4908 authored by Vilém Duha's avatar Vilém Duha
Browse files

BlenderKit: fix a logging bug

caused assets not to append in saved files.
parent 87889365
No related branches found
No related tags found
No related merge requests found
...@@ -406,7 +406,7 @@ def copy_asset(fp1, fp2): ...@@ -406,7 +406,7 @@ def copy_asset(fp1, fp2):
target_subdir = os.path.join(target_dir, subdir.name) target_subdir = os.path.join(target_dir, subdir.name)
if os.path.exists(target_subdir): if os.path.exists(target_subdir):
continue continue
bk_logger.debug(subdir+' '+ target_subdir) bk_logger.debug(str(subdir) +' '+ str(target_subdir))
shutil.copytree(subdir, target_subdir) shutil.copytree(subdir, target_subdir)
bk_logger.debug('copied') bk_logger.debug('copied')
......
0% Loading or .
You are about to add 0 people to the discussion. Proceed with caution.
Please register or to comment