Skip to content
Snippets Groups Projects
Commit 2d051299 authored by Martin Poirier's avatar Martin Poirier
Browse files

netrender

invalid operator return value when downloading results from a job with no finished frames
parent 471a7ab1
No related branches found
No related tags found
No related merge requests found
...@@ -418,7 +418,8 @@ class netclientdownload(bpy.types.Operator): ...@@ -418,7 +418,8 @@ class netclientdownload(bpy.types.Operator):
nb_missing += 1 nb_missing += 1
if not finished_frames: if not finished_frames:
return self.report({'ERROR'}, "Job doesn't have any finished frames")
return {'ERROR'}
frame_ranges = [] frame_ranges = []
......
0% Loading or .
You are about to add 0 people to the discussion. Proceed with caution.
Please register or to comment