Skip to content

Commit c3a434c

Browse files
committed
Ignore non-errors when running nn-based particle picking
1 parent 4142ed7 commit c3a434c

File tree

1 file changed

+1
-1
lines changed

1 file changed

+1
-1
lines changed

src/pyp/system/local_run.py

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -68,7 +68,7 @@ def run_shell_command(command, verbose=False):
6868
).communicate()
6969
if verbose and len(output) > 0:
7070
logger.info("\n".join([s for s in output.split("\n") if s]))
71-
if len(error) > 0 and "BZIP2" not in error and "no version information available" not in error and "Format: lossy" not in error:
71+
if len(error) > 0 and "BZIP2" not in error and "no version information available" not in error and "Format: lossy" not in error and "p_observed" not in error and "it/s" not in error:
7272
logger.error(error)
7373
return output, error
7474

0 commit comments

Comments
 (0)