Okay, we'll just do the whole thing in a try block

This commit is contained in:
dtookey 2020-10-02 15:23:50 -04:00
parent 5b2c7c0ee9
commit 59aba6ba20

View File

@ -68,19 +68,19 @@ class Twitch_Module():
def eval_commands(self, message: twitch.chat.Message):
# containsURL: bool = self.contains_url(message)
first_space_idx = message.text.index(' ')
command_text = ' '
if first_space_idx > -1:
command_text = message.text[0:first_space_idx]
else:
command_text = message.text
try:
first_space_idx = message.text.index(' ')
command_text = ' '
if first_space_idx > -1:
command_text = message.text[0:first_space_idx]
else:
command_text = message.text
command = self.commands[command_text]
if command is not None and command.command_type is AbstractCommand.CommandType.TWITCH:
command.do_command(self, message)
except Exception as e:
pass # we don't care
pass # we don't care
# if message.text.startswith('!tts start'):
# print("tts activated on #" + message.channel)
# self.send_message("tts activated")