Welcome to mirror list, hosted at ThFree Co, Russian Federation.

git.blender.org/blender-addons.git - Unnamed repository; edit this file 'description' to name the repository.
summaryrefslogtreecommitdiff
diff options
context:
space:
mode:
authorlijenstina <lijenstina@gmail.com>2017-06-03 23:28:13 +0300
committerlijenstina <lijenstina@gmail.com>2017-06-03 23:28:13 +0300
commit6aa147d1b53b2cb41ce7965a29f44fa55f1ae9c1 (patch)
tree2bb5bbce5b9ad55d1cb8a44648423cf50ec245bb /development_ui_classes.py
parent43e4b07bb084bd1301457aabab60929114328832 (diff)
UI Classes Overview: Add the new wiki page link
Small update, link the new wiki page in the bl_info
Diffstat (limited to 'development_ui_classes.py')
-rw-r--r--development_ui_classes.py6
1 files changed, 4 insertions, 2 deletions
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()