Skip to content

Commit 546152d

Browse files
committed
minor change
1 parent 3353b90 commit 546152d

1 file changed

Lines changed: 2 additions & 2 deletions

File tree

simloader/__init__.py

Lines changed: 2 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -14,9 +14,9 @@ def print_information(scene):
1414
now = datetime.now()
1515
path = bpy.context.scene.render.filepath
1616
path = bpy.path.abspath(path)
17-
filepath = path + '/simloader_' + now.strftime("%Y_%m_%d %H:%M")
17+
filepath = path + '/simloader_' + now.strftime("%Y-%m-%d_%H-%M")
1818
with open(filepath, 'w') as file:
19-
file.write("Render Time: {}\n".format(now.strftime("%Y_%m_%d %H:%M")))
19+
file.write("Render Time: {}\n".format(now.strftime("%Y-%m-%d_%H-%M")))
2020
file.write("Simloader Objects in the scene:\n\n")
2121
for obj in bpy.data.objects:
2222
simloader_prop = obj.SIMLOADER

0 commit comments

Comments
 (0)