oops, won't send quit message like that

This commit is contained in:
neersighted 2012-03-01 13:55:32 -08:00
parent a74c4c0933
commit f0eeb9aa75

View file

@ -18,8 +18,8 @@ def stop(inp, input=None, db=None, notice=None):
input.conn.send("QUIT :Killed by " + input.nick + " (" + inp + ")")
else:
input.conn.send("QUIT :Killed by " + input.nick + " (no reason)")
subprocess.call("nohup ./cloudbot stop&", shell=True)
time.sleep(5)
subprocess.call("python cloudbot stop", shell=True)
@hook.command(autohelp=False)
@ -32,8 +32,8 @@ def restart(inp, input=None, db=None, notice=None):
input.conn.send("QUIT :Restarted by " + input.nick + " (" + inp + ")")
else:
input.conn.send("QUIT :Restarted by " + input.nick + " (no reason)")
subprocess.call("nohup ./cloudbot restart&", shell=True)
time.sleep(5)
subprocess.call("python cloudbot restart", shell=True)
@hook.command(autohelp=False)
@ -42,8 +42,8 @@ def clear(inp, input=None, db=None, notice=None):
if not input.nick in input.bot.config["admins"]:
notice("Only bot admins can use this command!")
return
subprocess.call("nohup ./cloudbot clear&", shell=True)
time.sleep(5)
subprocess.call("python ./cloudbot clear", shell=True)
@hook.command