expect frame-numbers >3 digits

This commit is contained in:
MaZderMind 2014-07-23 23:36:30 +02:00
parent f425cc291c
commit d3d90d0e30

View file

@ -98,7 +98,7 @@ def rendertask(task):
for frame in task.sequence(): for frame in task.sequence():
# print a line for each and every frame generated # print a line for each and every frame generated
if debug: if debug:
print("frameNr {0:2d} => {1}".format(frameNr, frame)) print("frameNr {0:3d} => {1}".format(frameNr, frame))
# open the output-file (named ".gen.svg" in the workdir) # open the output-file (named ".gen.svg" in the workdir)
with open(os.path.join(task.workdir, '.gen.svg'), 'w') as fp: with open(os.path.join(task.workdir, '.gen.svg'), 'w') as fp: