Skip to content
Snippets Groups Projects
Commit d5c9ab52 authored by Andrew Waterhouse's avatar Andrew Waterhouse
Browse files

keep this as bytes Wrote abstract state sequence to

parent a00f318a
No related branches found
No related tags found
No related merge requests found
......@@ -667,8 +667,7 @@ class HHblits:
job = subprocess.Popen(cs_cmd, shell=True, cwd=self.working_dir,
stdout=subprocess.PIPE, stderr=subprocess.PIPE)
sout, _ = job.communicate()
sout = sout.decode()
if 'Wrote abstract state sequence to' in sout:
if b'Wrote abstract state sequence to' in sout:
return cs_file
ost.LogWarning('Creating column state sequence file (%s) failed' % \
......
0% Loading or .
You are about to add 0 people to the discussion. Proceed with caution.
Finish editing this message first!
Please register or to comment