Skip to content

Commit

Permalink
Merge pull request #4417 from voxel51/bugfix/iss-4387
Browse files Browse the repository at this point in the history
Fixing log syntax in set_progress()
  • Loading branch information
brimoor authored May 23, 2024
2 parents dd8a105 + 2fe8e42 commit ee0d85c
Showing 1 changed file with 1 addition and 1 deletion.
2 changes: 1 addition & 1 deletion fiftyone/operators/executor.py
Original file line number Diff line number Diff line change
Expand Up @@ -732,7 +732,7 @@ def set_progress(self, progress=None, label=None):
ExecutionProgress(progress, label),
)
else:
self.log(f"Progress: {progress.progress} - {progress.label}")
self.log(f"Progress: {progress} - {label}")


class ExecutionResult(object):
Expand Down

0 comments on commit ee0d85c

Please sign in to comment.