Fix shadowing of variable in python

This commit is contained in:
2017-08-21 09:52:13 +02:00
parent ebdbaf313e
commit dadb453b31

View File

@@ -111,11 +111,11 @@ def _printBriefResult(ctx, results):
for scene in ctx.scenes:
if scene not in stats:
continue
stats = stats[scene]
scene_stats = stats[scene]
print("{}: {}" . format(
scene,
util.humanReadableTimeDifference(
stats.pipeline_render_time)))
scene_stats.pipeline_render_time)))
def main():