From 0642a2a3ae12d24dd6e632c4eca2b268df9a208d Mon Sep 17 00:00:00 2001 From: neersighted Date: Wed, 29 Feb 2012 11:53:43 -0800 Subject: [PATCH] update restart.py for wrapper --- lib/restart.py | 6 ++---- 1 file changed, 2 insertions(+), 4 deletions(-) diff --git a/lib/restart.py b/lib/restart.py index 0502ee5..0f2e309 100755 --- a/lib/restart.py +++ b/lib/restart.py @@ -4,10 +4,8 @@ import sys import os import subprocess -if os.path.isfile("./control.sh"): - restart = "./control.sh restart" -elif os.path.isfile("./bot.sh"): - restart = "./bot.sh restart" +if os.path.isfile("./cloudbot"): + restart = "./cloudbot restart" else: restart = "./bot.py"