def restart(self, ctx):
"""Restarts bot."""
try:
p = psutil.Process(os.getpid())
for handler in p.get_open_files() + p.connections():
os.close(handler.fd)
except Exception as e:
pass
python = sys.executable
os.execl(python, python, *sys.argv)
评论列表
文章目录