Skip to content

Commit

Permalink
Fix resetting OutputDirectory for multiCamera
Browse files Browse the repository at this point in the history
Cannot be None as concatenation would be an issue.
  • Loading branch information
kalisp committed Nov 18, 2024
1 parent 3aa671c commit fa01658
Showing 1 changed file with 2 additions and 2 deletions.
Original file line number Diff line number Diff line change
Expand Up @@ -49,8 +49,8 @@ def get_job_info(self, job_info=None):

# do not add expected files for multiCamera
if instance.data.get("multiCamera"):
job_info.OutputDirectory = None
job_info.OutputFilename = None
job_info.OutputDirectory.clear()
job_info.OutputFilename.clear()

return job_info

Expand Down

0 comments on commit fa01658

Please sign in to comment.