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>2012-10-31 21:03:31 +0400
committerCampbell Barton <ideasman42@gmail.com>2012-10-31 21:03:31 +0400
commitd705c52e659e63e07d22433c517fdddb2a5643bf (patch)
tree2bcdbbcfb17f6af17971c67314809b6ae10b9852 /source/tests
parent5dfe20d87ba8ea9957e679a1e9cd7926ac8d1cd8 (diff)
no longer use 'check_existing' to see if we need to have a save popup, instead use 'exec' operator on a saved file and
invoke on unsaved files. correct missing memset --> CustomData_reset switch too.
Diffstat (limited to 'source/tests')
-rw-r--r--source/tests/bl_test.py2
1 files changed, 1 insertions, 1 deletions
diff --git a/source/tests/bl_test.py b/source/tests/bl_test.py
index cfe91356444..0cb322a21b1 100644
--- a/source/tests/bl_test.py
+++ b/source/tests/bl_test.py
@@ -145,7 +145,7 @@ def main():
if write_blend is not None:
print(" Writing Blend: %s" % write_blend)
- bpy.ops.wm.save_mainfile(filepath=write_blend, check_existing=False)
+ bpy.ops.wm.save_mainfile('EXEC_DEFAULT', filepath=write_blend)
print(" Result: '%s'" % str(result))
if not result: