Skip to content
Snippets Groups Projects
Commit 51981930 authored by Andreas Freise's avatar Andreas Freise
Browse files

fixing some printing issues (verbose vs non verbose).

parent 2cea3562
No related branches found
No related tags found
No related merge requests found
......@@ -71,7 +71,6 @@ class katRun(object):
def __getitem__(self, value):
idx = [i for i in range(len(self.ylabels)) if self.ylabels[i].split(" ")[0] == str(value)]
print idx
if len(idx) == 1 and len(self.y.shape) == 1:
return self.y
......@@ -419,9 +418,9 @@ class kat(object):
vals = line.split("-")
action = vals[0].strip()
prc = vals[1].strip()[:-1]
sys.stdout.write("\r{0} {1}%".format(action, prc))
#elif line[0] == '*':
#sys.stdout.write(line)
if self.verbose: sys.stdout.write("\r{0} {1}%".format(action, prc))
elif line[0:3] == '** ':
if self.verbose: sys.stdout.write(line)
[out,errpipe] = p.communicate()
......
0% Loading or .
You are about to add 0 people to the discussion. Proceed with caution.
Please register or to comment