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>2014-04-15 07:11:48 +0400
committerCampbell Barton <ideasman42@gmail.com>2014-04-15 07:11:48 +0400
commitea610e655cd8b8f9fb97f0a9a4fc5fd46418bd9e (patch)
treec1a3582f1167f778bf5845e64e127c0560b0c42e /release/scripts/modules/bpy/ops.py
parent3cf39fc72a36bab1c5b82ae96cffe7dd01ce7260 (diff)
Style cleanup: C & pep8
Diffstat (limited to 'release/scripts/modules/bpy/ops.py')
-rw-r--r--release/scripts/modules/bpy/ops.py6
1 files changed, 4 insertions, 2 deletions
diff --git a/release/scripts/modules/bpy/ops.py b/release/scripts/modules/bpy/ops.py
index e457c087ab8..2be2abc6383 100644
--- a/release/scripts/modules/bpy/ops.py
+++ b/release/scripts/modules/bpy/ops.py
@@ -204,8 +204,10 @@ class BPyOpsSubModOp(object):
import bpy
idname = self.idname()
as_string = op_as_string(idname)
- # XXX You never quite know what you get from bpy.types, with operators... Operator and OperatorProperties
- # are shadowing each other, and not in the same way for native ops and py ones! See T39158.
+ # XXX You never quite know what you get from bpy.types,
+ # with operators... Operator and OperatorProperties
+ # are shadowing each other, and not in the same way for
+ # native ops and py ones! See T39158.
# op_class = getattr(bpy.types, idname)
op_class = op_get_rna(idname)
descr = op_class.bl_rna.description