From 37a4d67c5d318006f82c2a8077c50aec4e7f3844 Mon Sep 17 00:00:00 2001 From: Hans-Christoph Steiner Date: Fri, 14 Oct 2011 04:00:25 +0000 Subject: attempt to fix filtering of meaningless messages svn path=/trunk/; revision=15595 --- scripts/tests/pdtest.py | 8 +++++--- 1 file changed, 5 insertions(+), 3 deletions(-) (limited to 'scripts/tests/pdtest.py') diff --git a/scripts/tests/pdtest.py b/scripts/tests/pdtest.py index 28b3a612..a793e186 100755 --- a/scripts/tests/pdtest.py +++ b/scripts/tests/pdtest.py @@ -117,6 +117,8 @@ class PdTest(): 'IOhannes m zm', 'part of zexy-', 'Pd: 0.43.1-extended', + 'pdstring version 0.10-2 by Bryan Jurish', + 'verbose(3): libdir_loader: added .* to the canvas-local objectclass path', 'based on sync from jMax' ] for ignore in ignorelines: @@ -156,11 +158,11 @@ class PdTest(): patchoutput.append(line) else: break - patchoutput = self.remove_ignorelines(patchoutput) - if len(patchoutput) > 0: + toprint = self.remove_ignorelines(patchoutput) + if len(toprint) > 0: log.write('\n\n__________________________________________________\n') log.write('loading: ' + patch + '\n') - for line in patchoutput: + for line in toprint: log.write(line) log.flush() -- cgit v1.2.1