From 6aa147d1b53b2cb41ce7965a29f44fa55f1ae9c1 Mon Sep 17 00:00:00 2001
From: lijenstina <lijenstina@gmail.com>
Date: Sat, 3 Jun 2017 22:28:13 +0200
Subject: [PATCH] UI Classes Overview: Add the new wiki page link

Small update, link the new wiki page in the bl_info
---
 development_ui_classes.py | 6 ++++--
 1 file changed, 4 insertions(+), 2 deletions(-)

diff --git a/development_ui_classes.py b/development_ui_classes.py
index 33e604eb9..18b692f42 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()
 
-- 
GitLab