Merge pull request #40 from NeoBelerophon/yowsup-2

fix for whitespace only messages
This commit is contained in:
Mohammed Yaseen Mowzer 2016-01-06 21:03:26 +02:00
commit 7486028b35
1 changed files with 1 additions and 1 deletions

2
bot.py
View File

@ -45,7 +45,7 @@ class Bot():
args = message.strip().split(" ")
cmd = args.pop(0)
if cmd[0] == '\\':
if len(cmd) > 0 and cmd[0] == '\\':
try:
self.call(cmd[1:], args)
except KeyError: