From d751f00c1a7c203ad49a59c74b958ed053c4407b Mon Sep 17 00:00:00 2001 From: Gerardo Tauriello <gerardo.tauriello@unibas.ch> Date: Tue, 31 Jul 2018 15:34:29 +0200 Subject: [PATCH] SCHWED-3472: Remove print statements. --- modules/bindings/pymod/hhblits.py | 8 ++++---- 1 file changed, 4 insertions(+), 4 deletions(-) diff --git a/modules/bindings/pymod/hhblits.py b/modules/bindings/pymod/hhblits.py index c6da3994c..ed4a2d1af 100644 --- a/modules/bindings/pymod/hhblits.py +++ b/modules/bindings/pymod/hhblits.py @@ -550,8 +550,8 @@ class HHblits: stdout=subprocess.PIPE, stderr=subprocess.PIPE) sout, _ = job.communicate() lines = sout.splitlines() - for l in lines: - print l.strip() + for line in lines: + ost.LogVerbose(line.strip()) if not os.path.exists(a3m_file): ost.LogWarning('Building query profile failed, no output') return a3m_file @@ -735,10 +735,10 @@ class HHblits: if job.returncode != 0: lines = sout.splitlines() for line in lines: - print line.strip() + ost.LogError(line.strip()) lines = serr.splitlines() for line in lines: - print line.strip() + ost.LogError(line.strip()) return None return hhr_file -- GitLab