fixed .quit in irc
This commit is contained in:
parent
b7dd069d82
commit
42b4d4951a
2 changed files with 10 additions and 0 deletions
9
lib/stop.py
Executable file
9
lib/stop.py
Executable file
|
@ -0,0 +1,9 @@
|
|||
#!/usr/bin/env python
|
||||
# Tiny little stoper by neersighted
|
||||
import sys
|
||||
import os
|
||||
import subprocess
|
||||
|
||||
stop = "./cloudbot stop"
|
||||
subprocess.call(stop, shell=True)
|
||||
sys.exit()
|
Reference in a new issue