From fde1d13125fc3e7e9ddf11d7e858cd7eed40b2c3 Mon Sep 17 00:00:00 2001 From: Vincent Le Gallic Date: Fri, 16 Jun 2017 15:58:57 +0200 Subject: [PATCH] Ne pas crasher sur un HELP COMMANDE d'un non-op --- saturnin.py | 2 ++ 1 file changed, 2 insertions(+) diff --git a/saturnin.py b/saturnin.py index 2d9b4e9..1af8794 100755 --- a/saturnin.py +++ b/saturnin.py @@ -204,6 +204,8 @@ class Saturnin(ircbot.SingleServerIRCBot): helpmsg+="\n"+helpmsgs[2] else: helpmsg=helpmsgs[2] + if not helpmsg: # Un non-op a demandé de l'aide sur une commande dont il n'est pas censé connaître l'existence + helpmsg = "Commande inacessible." for ligne in helpmsg.split("\n"): serv.privmsg(auteur,ligne) elif cmd=="join": -- 2.39.2