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

git.blender.org/blender.git - Unnamed repository; edit this file 'description' to name the repository.
summaryrefslogtreecommitdiff
diff options
context:
space:
mode:
authorCampbell Barton <ideasman42@gmail.com>2010-01-31 17:46:28 +0300
committerCampbell Barton <ideasman42@gmail.com>2010-01-31 17:46:28 +0300
commit95069f29099b40055c0a3e4d10f4a7b0c602a1df (patch)
tree150ab0c4796c71a89c628c62213df625e4a72670 /release/scripts/modules/rna_prop_ui.py
parentfbadf21b00dba10945d269cf7a82e091833bfcb4 (diff)
pep8 changes
Diffstat (limited to 'release/scripts/modules/rna_prop_ui.py')
-rw-r--r--release/scripts/modules/rna_prop_ui.py3
1 files changed, 1 insertions, 2 deletions
diff --git a/release/scripts/modules/rna_prop_ui.py b/release/scripts/modules/rna_prop_ui.py
index f5b9e518c8f..a9e50592059 100644
--- a/release/scripts/modules/rna_prop_ui.py
+++ b/release/scripts/modules/rna_prop_ui.py
@@ -126,7 +126,7 @@ def draw(layout, context, context_member, use_edit=True):
class PropertyPanel(bpy.types.Panel):
"""
- The subclass should have its own poll function
+ The subclass should have its own poll function
and the variable '_context_path' MUST be set.
"""
bl_label = "Custom Properties"
@@ -269,4 +269,3 @@ class WM_OT_properties_remove(bpy.types.Operator):
item = eval("context.%s" % self.properties.path)
del item[self.properties.property]
return {'FINISHED'}
-