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>2019-09-09 23:11:52 +0300
committerCampbell Barton <ideasman42@gmail.com>2019-09-09 23:17:59 +0300
commitc8c3e7d284790197d0777059c202b409a696292c (patch)
tree5e29381c90400f0166120bd67f09be1e4dc5c375 /source/blender/python/rna_dump.py
parent51334dd3a64ef2fdc4df70e64bad26a95e4358f1 (diff)
Cleanup: trailing space, remove tabs, pep8
Diffstat (limited to 'source/blender/python/rna_dump.py')
-rw-r--r--source/blender/python/rna_dump.py6
1 files changed, 4 insertions, 2 deletions
diff --git a/source/blender/python/rna_dump.py b/source/blender/python/rna_dump.py
index c2ede5664f2..7d469d20110 100644
--- a/source/blender/python/rna_dump.py
+++ b/source/blender/python/rna_dump.py
@@ -133,8 +133,10 @@ seek(bpy.data, 'bpy.data', 0)
'''
for d in dir(bpy.types):
t = getattr(bpy.types, d)
- try: r = t.bl_rna
- except: r = None
+ try:
+ r = t.bl_rna
+ except:
+ r = None
if r:
seek(r, 'bpy.types.' + d + '.bl_rna', 0)
'''