From c6c9e1394736af5b6f4c08c270941b9296664b34 Mon Sep 17 00:00:00 2001 From: Nick Mowen Date: Tue, 22 Nov 2022 07:24:11 -0700 Subject: [PATCH] Use empty string --- frigate/http.py | 4 ++-- 1 file changed, 2 insertions(+), 2 deletions(-) diff --git a/frigate/http.py b/frigate/http.py index 3e6e4b015..f8d3e6325 100644 --- a/frigate/http.py +++ b/frigate/http.py @@ -1007,9 +1007,9 @@ def vainfo(): "return_code": vainfo.returncode, "stderr": vainfo.stderr.decode("unicode_escape").strip() if vainfo.stderr.decode() - else {}, + else "", "stdout": vainfo.stdout.decode("unicode_escape").strip() if vainfo.stdout.decode() - else {}, + else "", } )