From 628353835cc697dfc028088ff583620625a07393 Mon Sep 17 00:00:00 2001 From: Campbell Barton Date: Wed, 21 May 2014 12:18:25 +1000 Subject: [PATCH] Fix T40267: Addon's bug tracker urls not respected --- release/scripts/startup/bl_ui/space_userpref.py | 5 +++-- 1 file changed, 3 insertions(+), 2 deletions(-) diff --git a/release/scripts/startup/bl_ui/space_userpref.py b/release/scripts/startup/bl_ui/space_userpref.py index 18f7c53a616..bc478ed8713 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__