We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
1 parent 3353b90 commit 546152dCopy full SHA for 546152d
1 file changed
simloader/__init__.py
@@ -14,9 +14,9 @@ def print_information(scene):
14
now = datetime.now()
15
path = bpy.context.scene.render.filepath
16
path = bpy.path.abspath(path)
17
- filepath = path + '/simloader_' + now.strftime("%Y_%m_%d %H:%M")
+ filepath = path + '/simloader_' + now.strftime("%Y-%m-%d_%H-%M")
18
with open(filepath, 'w') as file:
19
- file.write("Render Time: {}\n".format(now.strftime("%Y_%m_%d %H:%M")))
+ file.write("Render Time: {}\n".format(now.strftime("%Y-%m-%d_%H-%M")))
20
file.write("Simloader Objects in the scene:\n\n")
21
for obj in bpy.data.objects:
22
simloader_prop = obj.SIMLOADER
0 commit comments