Syntax error

This commit is contained in:
Stan James 2018-02-01 21:10:09 -07:00
parent a698700709
commit a74a3fd5c2

11
bot.py
View File

@ -22,11 +22,8 @@ import unidecode
class TelegramMonitorBot: class TelegramMonitorBot:
def __init__(self): def __init__(self):
self.safe_user_ids = map(int, os.environ['SAFE_USER_IDS'].split(',')) self.safe_user_ids = map(int, os.environ['SAFE_USER_IDS'].split(','))
print (self.safe_user_ids)
self.message_ban_patterns = os.environ['MESSAGE_BAN_PATTERNS'] self.message_ban_patterns = os.environ['MESSAGE_BAN_PATTERNS']
self.message_ban_re = re.compile(self.message_ban_patterns, re.IGNORECASE) self.message_ban_re = re.compile(self.message_ban_patterns, re.IGNORECASE)
@ -98,10 +95,10 @@ class TelegramMonitorBot:
update.message.text.encode('utf-8')) update.message.text.encode('utf-8'))
) )
if not update.message.from_user.id in self.safe_user_ids: if not update.message.from_user.id in self.safe_user_ids:
# Security checks # Security checks
self.security_check_username(bot, update) self.security_check_username(bot, update)
self.security_check_message(bot, update) self.security_check_message(bot, update)
except Exception as e: except Exception as e:
print(e) print(e)