1
0

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

of first word
This commit is contained in:
2018-08-09 19:54:43 +01:00
parent 97a6261b53
commit 80d1fb4a3a

2
bot.py
View File

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