From 051156dc809062386bf5ef1f79565fee9268548f Mon Sep 17 00:00:00 2001 From: Guillaume Pellerin Date: Tue, 6 Feb 2024 16:04:12 +0100 Subject: [PATCH] bugfix --- bin/streaming/telecaster.py | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/bin/streaming/telecaster.py b/bin/streaming/telecaster.py index c2479e7..0a1a852 100755 --- a/bin/streaming/telecaster.py +++ b/bin/streaming/telecaster.py @@ -85,7 +85,7 @@ class TeleCaster(Thread): Thread.__init__(self) conf_file = open(conf_file_path, 'r') self.conf = yaml.safe_load(conf_file)["telecaster"] - self.stream_types = ["audio, ""video"] + self.stream_types = ["audio", "video"] self.deefuzzer_video_conf_file = "/tmp/telecaster_deefuzzer_video_monitor.yml" self.deefuzzer_audio_conf_file = "/tmp/telecaster_deefuzzer_audio_monitor.yml" # print(self.conf) -- 2.39.5