pngbot.py: convert to lower case when comparing channel names.

This commit is contained in:
Lucio Andrés Illanes Albornoz 2018-01-02 21:54:02 +01:00
parent 5f4aa470b9
commit b94d3afdb5

View File

@ -103,7 +103,7 @@ def main(argv0, ircServerHname, ircServerPort="6667", ircClientNick="pngbot", ir
elif ircServerMessage[1] == "PING":
_IrcBot.sendline("PONG", ircServerMessage[2])
elif ircServerMessage[1] == "PRIVMSG" \
and ircServerMessage[2] == ircClientChannel \
and ircServerMessage[2].lower() == ircClientChannel.lower() \
and ircServerMessage[3].startswith("!pngbot "):
asciiUrl = ircServerMessage[3].split(" ")[1]
asciiTmpFilePath = "tmp.txt"; imgTmpFilePath = "tmp.png";