From c4188c2bbabd87e12c7827fb30d42d2a9f61df8e Mon Sep 17 00:00:00 2001 From: Campbell Barton Date: Fri, 20 Nov 2015 16:09:02 +1100 Subject: Correct error in background job template Remove check for the path being writable, the operator raises error in this case. --- release/scripts/templates_py/background_job.py | 22 ++++++---------------- 1 file changed, 6 insertions(+), 16 deletions(-) (limited to 'release/scripts/templates_py') diff --git a/release/scripts/templates_py/background_job.py b/release/scripts/templates_py/background_job.py index 11b51e5a9b5..2911740abf9 100644 --- a/release/scripts/templates_py/background_job.py +++ b/release/scripts/templates_py/background_job.py @@ -11,7 +11,7 @@ # # Notice: # '--factory-startup' is used to avoid the user default settings from -# interfearing with automated scene generation. +# interfering with automated scene generation. # # '--' causes blender to ignore all following arguments so python can use them. # @@ -51,18 +51,7 @@ def example_function(text, save_path, render_path): lamp_ob.location = 2.0, 2.0, 5.0 if save_path: - try: - f = open(save_path, 'w') - f.close() - ok = True - except: - print("Cannot save to path %r" % save_path) - - import traceback - traceback.print_exc() - - if ok: - bpy.ops.wm.save_as_mainfile(filepath=save_path) + bpy.ops.wm.save_as_mainfile(filepath=save_path) if render_path: render = scene.render @@ -85,9 +74,10 @@ def main(): argv = argv[argv.index("--") + 1:] # get all args after "--" # When --help or no args are given, print this help - usage_text = \ - "Run blender in background mode with this script:" - " blender --background --python " + __file__ + " -- [options]" + usage_text = ( + "Run blender in background mode with this script:" + " blender --background --python " + __file__ + " -- [options]" + ) parser = argparse.ArgumentParser(description=usage_text) -- cgit v1.2.3