[Bf-blender-cvs] [6283538] master: Fix T40267: Addon's bug tracker urls not respected

Campbell Barton noreply at git.blender.org
Wed May 21 04:19:44 CEST 2014


Commit: 628353835cc697dfc028088ff583620625a07393
Author: Campbell Barton
Date:   Wed May 21 12:18:25 2014 +1000
https://developer.blender.org/rB628353835cc697dfc028088ff583620625a07393

Fix T40267: Addon's bug tracker urls not respected

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

M	release/scripts/startup/bl_ui/space_userpref.py

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

diff --git a/release/scripts/startup/bl_ui/space_userpref.py b/release/scripts/startup/bl_ui/space_userpref.py
index 18f7c53..bc478ed 100644
--- a/release/scripts/startup/bl_ui/space_userpref.py
+++ b/release/scripts/startup/bl_ui/space_userpref.py
@@ -1310,8 +1310,9 @@ class USERPREF_PT_addons(Panel):
                         split.label(text="Internet:")
                         if info["wiki_url"]:
                             split.operator("wm.url_open", text="Documentation", icon='HELP').url = info["wiki_url"]
-                        tracker_url = "http://developer.blender.org/maniphest/task/create/?project=3&type=Bug"
-                        split.operator("wm.url_open", text="Report a Bug", icon='URL').url = tracker_url
+                        split.operator("wm.url_open", text="Report a Bug", icon='URL').url = info.get(
+                                "tracker_url",
+                                "http://developer.blender.org/maniphest/task/create/?project=3&type=Bug")
                         if user_addon:
                             split.operator("wm.addon_remove", text="Remove", icon='CANCEL').module = mod.__name__




More information about the Bf-blender-cvs mailing list