From 092deeee998dfa2695c586c8105120bd586e8fd1 Mon Sep 17 00:00:00 2001 From: Julian Andres Klode Date: Fri, 12 Mar 2010 14:29:24 +0100 Subject: tests/test_all.py: Write information header to stderr, not stdout. --- tests/test_all.py | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) (limited to 'tests') diff --git a/tests/test_all.py b/tests/test_all.py index dc603dfd..d561a9ae 100644 --- a/tests/test_all.py +++ b/tests/test_all.py @@ -10,7 +10,7 @@ import unittest import sys if __name__ == '__main__': - print("[tests] Running on %s" % sys.version.replace("\n", "")) + sys.stderr.write("[tests] Running on %s\n" % sys.version.replace("\n", "")) os.chdir(os.path.dirname(__file__)) # Find the path to the built apt_pkg and apt_inst extensions if os.path.exists("../build"): -- cgit v1.2.3