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 /render_povray
parent8ad9de7c1e1022dee907ddce78f4c357111fc09e (diff)
quiet prints on startup
Add-ons shouldn't be printing information at startup.
Diffstat (limited to 'render_povray')
-rw-r--r--render_povray/ui.py5
1 files changed, 2 insertions, 3 deletions
diff --git a/render_povray/ui.py b/render_povray/ui.py
index 6bdadccf..75e99ec1 100644
--- a/render_povray/ui.py
+++ b/render_povray/ui.py
@@ -4695,15 +4695,14 @@ def register():
# bpy.types.TEXTURE_PT_context_texture.prepend(TEXTURE_PT_POV_type)
if not povCentricWorkspace in bpy.app.handlers.load_post:
- print("Adding POV wentric workspace on load handlers list")
+ # print("Adding POV wentric workspace on load handlers list")
bpy.app.handlers.load_post.append(povCentricWorkspace)
def unregister():
if povCentricWorkspace in bpy.app.handlers.load_post:
- print("Removing POV wentric workspace from load handlers list")
+ # print("Removing POV wentric workspace from load handlers list")
bpy.app.handlers.load_post.remove(povCentricWorkspace)
-
# from bpy.utils import unregister_class
# bpy.types.TEXTURE_PT_context_texture.remove(TEXTURE_PT_POV_type)