Fix bad if statement

This commit is contained in:
Nick Mowen 2022-11-10 06:35:40 -07:00
parent 97a56b8aeb
commit ff45b6dbe1

View File

@ -630,7 +630,7 @@ def ffprobe(camera_name):
output += f"{input.roles}\n" output += f"{input.roles}\n"
ffprobe = ffprobe_stream(input.path) ffprobe = ffprobe_stream(input.path)
if output: if ffprobe:
output += f"{ffprobe}\n" output += f"{ffprobe}\n"
else: else:
output += "error getting stream\n" output += "error getting stream\n"