From f8b409a508eef99fee8308840d6017e0682aeba5 Mon Sep 17 00:00:00 2001 From: Laurent Bachelier Date: Thu, 7 Mar 2013 00:17:39 +0100 Subject: [PATCH] All messages on stderr This allows using ./setup.py --url as long as you ignore stderr, for example. --- setup.py | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/setup.py b/setup.py index 2553edd4..7d7e3d97 100755 --- a/setup.py +++ b/setup.py @@ -45,7 +45,7 @@ def find_executable(name, names): def build_qt(): - print 'Building Qt applications...' + print >>sys.stderr, 'Building Qt applications...' make = find_executable('make', ('gmake', 'make')) pyuic4 = find_executable('pyuic4', ('python2-pyuic4', 'pyuic4-python2.7', 'pyuic4-python2.6', 'pyuic4')) if not pyuic4 or not make: