1
0

Fix bug where not using add command resulted in loss of capitalization

of first word
This commit is contained in:
Akbar Rahman 2018-08-09 19:54:43 +01:00
parent 97a6261b53
commit 80d1fb4a3a
Signed by: alvierahman90
GPG Key ID: 20609519444A1269

2
bot.py
View File

@ -34,7 +34,7 @@ def on_message(msg):
return return
text = msg['text'] text = msg['text']
command = text.split(' ')[0].lower() command = text.split(' ')[0]
arguments = text.split(' ')[1:] arguments = text.split(' ')[1:]
if command == '/last': if command == '/last':