From 21fb868a84bd895ed8be74ee72fd3fbe60cde27b Mon Sep 17 00:00:00 2001 From: Alvar Penning Date: Mon, 7 Feb 2022 16:15:21 +0100 Subject: [PATCH] stream.py: fix syntax error Seems to be introduced by 3d333687b6a20a8d3f09ef6acd786e96b305123f and just merged in 60ca05084001c00a66349febf0e113e82cc6bd09. --- stream.py | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/stream.py b/stream.py index f8c6a10..61fb309 100644 --- a/stream.py +++ b/stream.py @@ -156,7 +156,7 @@ def bbb_browser(): if args.chatMsg: tmp_chatMsg = ' '.join(args.chatMsg).strip('"') tmp_chatMsg = "{0}: {1}".format(tmp_chatMsg, tmp_chatUrl) - else if tmp_chatCustomMsg != '': + elif tmp_chatCustomMsg != '': tmp_chatMsg = tmp_chatCustomMsg else: tmp_chatMsg = "Recording in progress!"