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 /node_wrangler.py
parent352254d5c84eec8b2ef1922e9ccec25516f6d8c2 (diff)
Fix T63955: label text not used as a keyword arg
Diffstat (limited to 'node_wrangler.py')
-rw-r--r--node_wrangler.py2
1 files changed, 1 insertions, 1 deletions
diff --git a/node_wrangler.py b/node_wrangler.py
index 8c3f71f2..7cb71f38 100644
--- a/node_wrangler.py
+++ b/node_wrangler.py
@@ -4035,7 +4035,7 @@ class NWVertColMenu(bpy.types.Menu):
for vcol in vcols:
l.operator(NWAddAttrNode.bl_idname, text=vcol).attr_name = vcol
else:
- l.label("No Vertex Color layers on objects with this material")
+ l.label(text="No Vertex Color layers on objects with this material")
class NWSwitchNodeTypeMenu(Menu, NWBase):