mirror of
https://github.com/house-of-vanity/fesmoo_perdoliq.git
synced 2025-07-06 21:54:07 +00:00
Fix message parse error.
This commit is contained in:
@ -67,7 +67,10 @@ def echo(bot):
|
||||
update_id = update.update_id + 1
|
||||
|
||||
if update.message:
|
||||
s = update.message.text.split()
|
||||
try:
|
||||
s = update.message.text.split()
|
||||
except:
|
||||
s = "empty"
|
||||
if s[0] == 'resolve':
|
||||
#msg = "usr: " + \
|
||||
# s[1] + " pass: " + \
|
||||
|
Reference in New Issue
Block a user