Fix syntax error on if/else stmt

This commit is contained in:
Tristan Weir 2017-05-10 14:19:13 -07:00 коммит произвёл Brandon Myers
Родитель 91884f169e
Коммит 2b3b0cfc9a
Не найден ключ, соответствующий данной подписи
Идентификатор ключа GPG: 8AA79AD83045BBC7
1 изменённых файлов: 1 добавлений и 1 удалений

Просмотреть файл

@ -333,7 +333,7 @@ class alertConsumer(ConsumerMixin):
if not ((bodyDict['severity'] == 'NOTICE') or (bodyDict['severity'] == 'INFO')):
self.ircBot.client.msg(ircchannel, formatAlert(bodyDict))
#if the alert does not have a severity for some reason, go ahead and publish it
else
else:
self.ircBot.client.msg(ircchannel, formatAlert(bodyDict))
message.ack()