diff tests/run.py @ 393:e857e5cfc10f

tests: send warning to stderr instead of redirected stdout
author Dirkjan Ochtman <dirkjan@ochtman.nl>
date Thu, 11 Jun 2009 11:39:45 +0200
parents d19843ac13c9
children d70c8e45cb9e
line wrap: on
line diff
--- 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())