do not specify explicit delimiter for split

this interestingly makes python drop consecutive spaces, so the bot will
not store empty "words"
This commit is contained in:
xfnw 2021-11-11 19:56:05 -05:00
parent 1d915a8e7e
commit c65bfa0c7d
1 changed files with 2 additions and 2 deletions

View File

@ -17,7 +17,7 @@ async def rec(self, m):
beg = shared.db['beg']
end = shared.db['end']
words = m.split(' ')
words = m.split()
if words[0] == 'admin' or len(words) < 2:
return
@ -110,7 +110,7 @@ async def filter(self, c, n, m):
elif '#' not in c and n != self.nickname:
await go(self, c, n, m)
else:
if len(m.split(' ')) > 1:
if len(m.split()) > 1:
if shared.learntime + shared.learndelay < time.time():
await rec(self, m)
shared.learntime = time.time()