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:
Diffstat (limited to 'blenderkit/categories.py')
-rw-r--r--blenderkit/categories.py4
1 files changed, 2 insertions, 2 deletions
diff --git a/blenderkit/categories.py b/blenderkit/categories.py
index e4ff9be1..e7fd72bd 100644
--- a/blenderkit/categories.py
+++ b/blenderkit/categories.py
@@ -50,7 +50,7 @@ def copy_categories():
categories_filepath = os.path.join(tempdir, 'categories.json')
if not os.path.exists(categories_filepath):
source_path = paths.get_addon_file(subpath='data' + os.sep + 'categories.json')
- print('attempt to copy categories from: %s to %s' % (categories_filepath, source_path))
+ # print('attempt to copy categories from: %s to %s' % (categories_filepath, source_path))
try:
shutil.copy(source_path, categories_filepath)
except:
@@ -78,7 +78,7 @@ def fetch_categories(API_key):
with open(categories_filepath, 'w') as s:
json.dump(categories, s, indent=4)
except:
- print('category fetching failed')
+ # print('category fetching failed')
if not os.path.exists(categories_filepath):
source_path = paths.get_addon_file(subpath='data' + os.sep + 'categories.json')
shutil.copy(source_path, categories_filepath)