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-06 15:10:29 +0300
committerVilém Duha <vilda.novak@gmail.com>2021-01-06 16:00:39 +0300
commit083251ec45b2ded5dd7b401af94e7957a060af88 (patch)
tree78506e0a7224548500fc0bccb5e958cbc73d4748
parented7ed429d1994d868b8c0cb0ec1e9469a0ab5ee5 (diff)
BlenderKit:
minor logging fixes
-rw-r--r--blenderkit/utils.py4
1 files changed, 2 insertions, 2 deletions
diff --git a/blenderkit/utils.py b/blenderkit/utils.py
index 7befc97e..61b2bea1 100644
--- a/blenderkit/utils.py
+++ b/blenderkit/utils.py
@@ -401,7 +401,7 @@ def copy_asset(fp1, fp2):
'''synchronizes the asset between folders, including it's texture subdirectories'''
if 1:
bk_logger.debug('copy asset')
- bk_logger.debug(fp1, fp2)
+ bk_logger.debug(fp1 +' '+ fp2)
if not os.path.exists(fp2):
shutil.copyfile(fp1, fp2)
bk_logger.debug('copied')
@@ -413,7 +413,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(subdir+' '+ target_subdir)
shutil.copytree(subdir, target_subdir)
bk_logger.debug('copied')