Skip to content
Snippets Groups Projects
Commit 9ce4cf7f authored by Daniel Brown's avatar Daniel Brown
Browse files

Adding check for lines starting with '**' when parsing finesse stdout/stderr

parent 28736604
Branches
No related tags found
No related merge requests found
...@@ -886,18 +886,16 @@ class kat(object): ...@@ -886,18 +886,16 @@ class kat(object):
if len(line) > 0: if len(line) > 0:
if line.rstrip().endswith('s'): if line.lstrip().startswith('**'):
# FIXME: hack to fix bug with 'Global scaling factor' message
if line.rstrip().endswith('ts'):
# do nothing
if self.verbose: sys.stdout.write(line) if self.verbose: sys.stdout.write(line)
else: elif line.rstrip().endswith('s'):
vals = line.split("-") vals = line.split("-")
action = vals[0].strip() action = vals[0].strip()
prc = vals[1].strip()[:] prc = vals[1].strip()[:]
if printerr == 1: if printerr == 1:
sys.stdout.write("\r{0} {1}".format(action, prc)) sys.stdout.write("\r{0} {1}".format(action, prc))
elif line.rstrip().endswith('%'): elif line.rstrip().endswith('%'):
vals = line.split("-") vals = line.split("-")
action = vals[0].strip() action = vals[0].strip()
......
0% Loading or .
You are about to add 0 people to the discussion. Proceed with caution.
Please register or to comment