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>2006-12-25 12:17:23 +0300
committerCampbell Barton <ideasman42@gmail.com>2006-12-25 12:17:23 +0300
commit859b7f207ebf3bc6b1a51c49ff46b536973bacd2 (patch)
tree3d878cc835b1285ad26a3017d14676ca8802af2d /release/scripts/flt_import.py
parentdd5077060efa99412112ad27c0db4e4c6668c3e0 (diff)
modified scripts from using older/depricated Python API commands, deprecated scn.getChildren() in the docs.
Diffstat (limited to 'release/scripts/flt_import.py')
-rwxr-xr-xrelease/scripts/flt_import.py2
1 files changed, 1 insertions, 1 deletions
diff --git a/release/scripts/flt_import.py b/release/scripts/flt_import.py
index 599db2cfa91..be9f4742ac0 100755
--- a/release/scripts/flt_import.py
+++ b/release/scripts/flt_import.py
@@ -1807,7 +1807,7 @@ def select_file(filename):
# first set the context
Blender.Window.WaitCursor(True)
Blender.Window.EditMode(0)
- for ob in scene.getChildren():
+ for ob in scene.objects:
ob.sel=0