Browse Source

Try to fix these bugs in earwigbot.mako.

pull/24/head
Ben Kurtovic 12 years ago
parent
commit
e27321d2ea
1 changed files with 3 additions and 3 deletions
  1. +3
    -3
      pages/earwigbot.mako

+ 3
- 3
pages/earwigbot.mako View File

@@ -5,7 +5,7 @@
from shlex import split from shlex import split
from subprocess import check_output, CalledProcessError, STDOUT from subprocess import check_output, CalledProcessError, STDOUT


os.environ["SGE_ROOT"] = "/sge62"
os.environ["SGE_ROOT"] = "/sge/GE"


def format_date(d): def format_date(d):
start = datetime.strptime(d, "%a %b %d %H:%M:%S %Y") start = datetime.strptime(d, "%a %b %d %H:%M:%S %Y")
@@ -28,10 +28,10 @@
try: try:
result = check_output(["qstat", "-j", "earwigbot"], stderr=STDOUT) result = check_output(["qstat", "-j", "earwigbot"], stderr=STDOUT)
except CalledProcessError as e: except CalledProcessError as e:
return ["offline"]
return ["offline", None, None, None]


if result.startswith("Following jobs do not exist:"): if result.startswith("Following jobs do not exist:"):
return ["offline"]
return ["offline", None, None, None]


lines = result.splitlines()[1:] lines = result.splitlines()[1:]
re_key = "^(.*?):\s" re_key = "^(.*?):\s"


Loading…
Cancel
Save