Welcome to mirror list, hosted at ThFree Co, Russian Federation.

git.blender.org/blender-addons.git - Unnamed repository; edit this file 'description' to name the repository.
summaryrefslogtreecommitdiff
diff options
context:
space:
mode:
Diffstat (limited to 'oscurart_tools/render')
-rw-r--r--oscurart_tools/render/batch_maker.py4
1 files changed, 2 insertions, 2 deletions
diff --git a/oscurart_tools/render/batch_maker.py b/oscurart_tools/render/batch_maker.py
index 07c727d1..5dd007e3 100644
--- a/oscurart_tools/render/batch_maker.py
+++ b/oscurart_tools/render/batch_maker.py
@@ -27,9 +27,9 @@ def batchMaker(BIN):
with open(SHFILE, "w") as FILE:
if not BIN:
- FILE.writelines("%s -b %s --python-text Text -a" % (bpy.app.binary_path,bpy.data.filepath))
+ FILE.writelines(r"'%s' -b '%s' --python-text Text -a" % (bpy.app.binary_path,bpy.data.filepath))
else:
- FILE.writelines("blender -b %s --python-text Text -a" % (bpy.data.filepath))
+ FILE.writelines(r"blender -b '%s' --python-text Text -a" % (bpy.data.filepath))