[Bf-extensions-cvs] [f0c312e6] master: Render Batch support fix

Eugenio Pignataro noreply at git.blender.org
Mon Mar 26 13:53:16 CEST 2018


Commit: f0c312e6f2d4036cc4e61514f2397806cfa778db
Author: Eugenio Pignataro
Date:   Mon Mar 26 08:53:10 2018 -0300
Branches: master
https://developer.blender.org/rBAf0c312e6f2d4036cc4e61514f2397806cfa778db

Render Batch support fix

===================================================================

M	oscurart_tools/oscurart_render.py

===================================================================

diff --git a/oscurart_tools/oscurart_render.py b/oscurart_tools/oscurart_render.py
index 991f511e..a758fae1 100644
--- a/oscurart_tools/oscurart_render.py
+++ b/oscurart_tools/oscurart_render.py
@@ -236,12 +236,12 @@ def defoscBatchMaker(TYPE, BIN):
                 print(
                     "** Oscurart Batch maker can not modify the permissions.")
         if not BIN:
-            FILE.writelines("%s%s%s -b %s -x 1  -P %s%s.py  -s %s -e %s -a" %
+            FILE.writelines("%s%s%s -b %s -x 1  -P %s%s.py  -s %s -e %s " %
                             (QUOTES, BINDIR, QUOTES, bpy.data.filepath,
                              bpy.data.filepath.rpartition(SYSBAR)[0] + SYSBAR, TYPE,
                              str(bpy.context.scene.frame_start), str(bpy.context.scene.frame_end)))
         else:
-            FILE.writelines("%s -b %s -x 1  -P %s%s.py  -s %s -e %s -a" %
+            FILE.writelines("%s -b %s -x 1  -P %s%s.py  -s %s -e %s " %
                             ("blender", bpy.data.filepath,
                              bpy.data.filepath.rpartition(SYSBAR)[0] + SYSBAR, TYPE,
                              str(bpy.context.scene.frame_start), str(bpy.context.scene.frame_end)))



More information about the Bf-extensions-cvs mailing list