diff --git a/frigate/video.py b/frigate/video.py index 83825bf27..c78bf49f8 100755 --- a/frigate/video.py +++ b/frigate/video.py @@ -276,7 +276,11 @@ class CameraWatchdog(threading.Thread): for p in self.ffmpeg_other_processes: poll = p["process"].poll() - if self.config.record.enabled and "record" in p["roles"] and not self.verify_ffmpeg_recordings(): + if ( + self.config.record.enabled + and "record" in p["roles"] + and not self.verify_ffmpeg_recordings() + ): self.logger.error( f"No recording segments from {self.camera_name}. Exiting ffmpeg..." )