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:
authorCampbell Barton <ideasman42@gmail.com>2019-04-29 05:22:49 +0300
committerCampbell Barton <ideasman42@gmail.com>2019-04-29 05:22:49 +0300
commite059588947d55de88c4472abd65b187da621cdfa (patch)
tree0469a059ec177a137c77a891e1ba64687481f200 /oscurart_tools
parent352254d5c84eec8b2ef1922e9ccec25516f6d8c2 (diff)
Fix T63955: label text not used as a keyword arg
Diffstat (limited to 'oscurart_tools')
-rw-r--r--oscurart_tools/object/selection.py4
1 files changed, 1 insertions, 3 deletions
diff --git a/oscurart_tools/object/selection.py b/oscurart_tools/object/selection.py
index 39f6b603..44eb2a03 100644
--- a/oscurart_tools/object/selection.py
+++ b/oscurart_tools/object/selection.py
@@ -59,7 +59,5 @@ class OSSELECTION_HT_OscSelection(bpy.types.Header):
"""
layout = self.layout
row = layout.row()
- row.label("Sels: "+str(len(bpy.selection_osc)))
+ row.label(text="Sels: "+str(len(bpy.selection_osc)))
"""
-
-