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-11-19 14:57:10 +0300
committerCampbell Barton <ideasman42@gmail.com>2010-11-19 14:57:10 +0300
commit7689ac75ad4978179362aba4fa54e6d842492c03 (patch)
tree6eaf851beae3d0218fa4280263863bea9de9f2b6 /release/scripts/modules/bpy/ops.py
parenta04bbb2374fc6730408442ca01f52b94bd987ac7 (diff)
fix for error in recent commit.
Diffstat (limited to 'release/scripts/modules/bpy/ops.py')
-rw-r--r--release/scripts/modules/bpy/ops.py2
1 files changed, 1 insertions, 1 deletions
diff --git a/release/scripts/modules/bpy/ops.py b/release/scripts/modules/bpy/ops.py
index 23d82a98220..5b4adbdb23e 100644
--- a/release/scripts/modules/bpy/ops.py
+++ b/release/scripts/modules/bpy/ops.py
@@ -170,7 +170,7 @@ class bpy_ops_submodule_op(object):
if scene: # None in backgroud mode
scene.update()
else:
- for scene in data.scenes:
+ for scene in bpy.data.scenes:
scene.update()
return ret