[Bf-extensions-cvs] [6aa147d1] master: UI Classes Overview: Add the new wiki page link

lijenstina noreply at git.blender.org
Sat Jun 3 22:29:14 CEST 2017


Commit: 6aa147d1b53b2cb41ce7965a29f44fa55f1ae9c1
Author: lijenstina
Date:   Sat Jun 3 22:28:13 2017 +0200
Branches: master
https://developer.blender.org/rBA6aa147d1b53b2cb41ce7965a29f44fa55f1ae9c1

UI Classes Overview: Add the new wiki page link

Small update, link the new wiki page in the bl_info

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

M	development_ui_classes.py

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

diff --git a/development_ui_classes.py b/development_ui_classes.py
index 33e604eb..18b692f4 100644
--- a/development_ui_classes.py
+++ b/development_ui_classes.py
@@ -26,7 +26,8 @@ bl_info = {
     "location": "Text Editor > Properties",
     "description": "Print the UI classes in a text-block",
     "warning": "",
-    "wiki_url": "",
+    "wiki_url": "https://wiki.blender.org/index.php/Extensions:2.6/"
+                "Py/Scripts/Development/Classes_Overview",
     "category": "Development"
     }
 
@@ -132,7 +133,8 @@ class TEXT_OT_ui_cheat_sheet(Operator):
 
             return {'FINISHED'}
         except:
-            self.report({'WARNING'}, "Failure to write the UI list (Check the console for more info)")
+            self.report({'WARNING'},
+                        "Failure to write the UI list (Check the console for more info)")
             import traceback
             traceback.print_exc()



More information about the Bf-extensions-cvs mailing list