Welcome to mirror list, hosted at ThFree Co, Russian Federation.

git.blender.org/blender-addons.git - Unnamed repository; edit this file 'description' to name the repository.
summaryrefslogtreecommitdiff
diff options
context:
space:
mode:
authorVilém Duha <vilda.novak@gmail.com>2021-01-13 14:23:38 +0300
committerVilém Duha <vilda.novak@gmail.com>2021-01-13 14:23:38 +0300
commitd2dc4908761b65b28e51ff90d66226ee3bb25efb (patch)
tree3e2e8a97e6bb34f1b7f28f1604a469d0a1ce8964
parent87889365fe562e594fa989ef6315c001e2cbe63a (diff)
BlenderKit: fix a logging bug
caused assets not to append in saved files.
-rw-r--r--blenderkit/utils.py2
1 files changed, 1 insertions, 1 deletions
diff --git a/blenderkit/utils.py b/blenderkit/utils.py
index 88aaa129..38e34551 100644
--- a/blenderkit/utils.py
+++ b/blenderkit/utils.py
@@ -406,7 +406,7 @@ def copy_asset(fp1, fp2):
target_subdir = os.path.join(target_dir, subdir.name)
if os.path.exists(target_subdir):
continue
- bk_logger.debug(subdir+' '+ target_subdir)
+ bk_logger.debug(str(subdir) +' '+ str(target_subdir))
shutil.copytree(subdir, target_subdir)
bk_logger.debug('copied')