From 083251ec45b2ded5dd7b401af94e7957a060af88 Mon Sep 17 00:00:00 2001 From: =?UTF-8?q?Vil=C3=A9m=20Duha?= Date: Wed, 6 Jan 2021 13:10:29 +0100 Subject: BlenderKit: minor logging fixes --- blenderkit/utils.py | 4 ++-- 1 file 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') -- cgit v1.2.3