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:
authormeta-androcto <meta.androcto1@gmail.com>2019-12-18 13:23:23 +0300
committermeta-androcto <meta.androcto1@gmail.com>2019-12-18 13:23:23 +0300
commitdba7a10556f31bed867b463f0448d7b378dcef8b (patch)
tree54516cb3ee903160339164ce5480520dc005f491 /add_mesh_extra_objects
parent9f12957bf2a3b9a7f5cb7d78a26d53c1d0aceb13 (diff)
rock gen: quiet startup prints
Diffstat (limited to 'add_mesh_extra_objects')
-rw-r--r--add_mesh_extra_objects/add_mesh_rocks/rockgen.py2
-rw-r--r--add_mesh_extra_objects/add_mesh_rocks/settings.py2
2 files changed, 2 insertions, 2 deletions
diff --git a/add_mesh_extra_objects/add_mesh_rocks/rockgen.py b/add_mesh_extra_objects/add_mesh_rocks/rockgen.py
index 46819093..26f15d97 100644
--- a/add_mesh_extra_objects/add_mesh_rocks/rockgen.py
+++ b/add_mesh_extra_objects/add_mesh_rocks/rockgen.py
@@ -140,7 +140,7 @@ try:
from numpy.random import (
seed,
weibull)
- print("Rock Generator: Numpy found.")
+# print("Rock Generator: Numpy found.")
numpy = True
except:
from random import (
diff --git a/add_mesh_extra_objects/add_mesh_rocks/settings.py b/add_mesh_extra_objects/add_mesh_rocks/settings.py
index 3e6a8df2..ae41779e 100644
--- a/add_mesh_extra_objects/add_mesh_rocks/settings.py
+++ b/add_mesh_extra_objects/add_mesh_rocks/settings.py
@@ -42,7 +42,7 @@ path = basePath + "add_mesh_rocks.xml"
try:
source = minidom.parse(path)
- print("Rock generator settings file found:\n" + path)
+# print("Rock generator settings file found:\n" + path)
except:
print("Rock generator settings file not found. Creating settings file.")
shutil.copy(basePath + "factory.xml", path)