X-Git-Url: http://bilbo.iut-bm.univ-fcomte.fr/pub/gitweb/simgrid.git/blobdiff_plain/a604ba860f2989b7703e79518b1ebec6d36364c8..919a006452206f935fe271499ab68eb8cf875854:/tools/tesh/tesh.py diff --git a/tools/tesh/tesh.py b/tools/tesh/tesh.py index 8821279506..0d2825fff1 100755 --- a/tools/tesh/tesh.py +++ b/tools/tesh/tesh.py @@ -429,9 +429,9 @@ class Cmd: logs.append("(ignoring the output of <{cmd}> as requested)".format(cmd=cmd_name)) else: stdouta = stdout_data.split("\n") + stdouta = self.remove_ignored_lines(stdouta) while stdouta and stdouta[-1] == "": del stdouta[-1] - stdouta = self.remove_ignored_lines(stdouta) stdcpy = stdouta[:] # Mimic the "sort" bash command, which is case unsensitive.