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:
authorCampbell Barton <ideasman42@gmail.com>2020-10-16 07:33:45 +0300
committerCampbell Barton <ideasman42@gmail.com>2020-10-16 07:51:54 +0300
commit720fe5878de21a46e205c4693ee1410b24967887 (patch)
tree92680131b860edba161a3ffd33486eab263642a3 /ant_landscape
parent8ad9de7c1e1022dee907ddce78f4c357111fc09e (diff)
quiet prints on startup
Add-ons shouldn't be printing information at startup.
Diffstat (limited to 'ant_landscape')
-rw-r--r--ant_landscape/stats.py2
1 files changed, 1 insertions, 1 deletions
diff --git a/ant_landscape/stats.py b/ant_landscape/stats.py
index 1d6d485c..5c37d2ba 100644
--- a/ant_landscape/stats.py
+++ b/ant_landscape/stats.py
@@ -2,7 +2,7 @@ from time import time
try:
import psutil
- print('psutil available')
+ # print('psutil available')
psutil_available=True
except ImportError:
psutil_available=False