[Bf-extensions-cvs] [4b0ffb2] master: Fix printing to console, report bugs link

lijenstina noreply at git.blender.org
Sun Aug 7 16:31:54 CEST 2016


Commit: 4b0ffb2cfb9e73eb6c82050a7cc889120432b4c9
Author: lijenstina
Date:   Sun Aug 7 16:30:32 2016 +0200
Branches: master
https://developer.blender.org/rBAC4b0ffb2cfb9e73eb6c82050a7cc889120432b4c9

Fix printing to console, report bugs link

Wrong old link to Developer Blender Phabricator
replaced

Changed a string that was used to trigger print

===================================================================

M	space_view3d_modifier_tools.py

===================================================================

diff --git a/space_view3d_modifier_tools.py b/space_view3d_modifier_tools.py
index 1f73b8a..9801354 100644
--- a/space_view3d_modifier_tools.py
+++ b/space_view3d_modifier_tools.py
@@ -27,7 +27,7 @@ bl_info = {
     "warning": "",
     "wiki_url": "http://wiki.blender.org/index.php/Extensions:2.6"
     "/Py/Scripts",
-    "tracker_url": "https://developer.blender.org/maniphest/project/3/type/Bug/",
+    "tracker_url": "https://developer.blender.org/maniphest/task/edit/form/2/",
     "category": "3D View"}
 
 import bpy
@@ -77,12 +77,12 @@ class ApplyAllModifiers(Operator):
 
         # applying failed for some objects, show report
         message_obj = (",".join(collect_names) if collect_names and
-                       len(collect_names) < 8 else "some objects (Check System Console for more info)")
+                       len(collect_names) < 8 else "some objects (Check System Console)")
 
         self.report(type={"INFO"}, message=(message_a if not message_b else
                     "Applying modifiers failed for {}".format(message_obj)))
 
-        if (collect_names and message_obj == "some objects"):
+        if (collect_names and message_obj == "some objects (Check System Console)"):
             print("\n** MODIFIER SPECIALS REPORT **\n Applying failed on:\n",
                   ", ".join(collect_names))



More information about the Bf-extensions-cvs mailing list