Просмотр исходного кода

Don't respond if the dot commands don't begin the message.

master
Thomas Mannay 7 лет назад
Родитель
Сommit
d12348ef7a
1 измененных файлов: 2 добавлений и 2 удалений
  1. +2
    -2
      seddy.py

+ 2
- 2
seddy.py Просмотреть файл

@@ -102,9 +102,9 @@ if __name__ == "__main__":
if 'PING' in line:
send.write('PONG\r\n')
send.flush()
if '.bots' in msg or '.bot ' + nick in msg:
if '.bots' in msg[:5] or '.bot ' + nick in msg[:5 + len(nick)]:
notice("I was written to correct your mistakes.")
if '.source ' + nick in msg:
if '.source ' + nick in msg[:8 + len(nick)]:
notice('[Python] https://github.com/sys-fs/seddy')
elif is_sed.match(msg):
foo = seddy(msg, history)


Загрузка…
Отмена
Сохранить