# HG changeset patch # User Dirkjan Ochtman # Date 1244713185 -7200 # Node ID e857e5cfc10fdbea197038e7b54d398717a6d2c8 # Parent 35993ba9d1194fdcabddb4fdf00643040782c5df tests: send warning to stderr instead of redirected stdout diff --git a/tests/run.py b/tests/run.py --- a/tests/run.py +++ b/tests/run.py @@ -48,7 +48,7 @@ if __name__ == '__main__': suite = [] for arg in args: if arg not in all: - print 'test module %s not available' % arg + print >> sys.stderr, 'test module %s not available' % arg else: suite.append(all[arg].suite())