All messages on stderr
This allows using ./setup.py --url as long as you ignore stderr, for example.
This commit is contained in:
parent
f0828ee24b
commit
f8b409a508
1 changed files with 1 additions and 1 deletions
2
setup.py
2
setup.py
|
|
@ -45,7 +45,7 @@ def find_executable(name, names):
|
||||||
|
|
||||||
|
|
||||||
def build_qt():
|
def build_qt():
|
||||||
print 'Building Qt applications...'
|
print >>sys.stderr, 'Building Qt applications...'
|
||||||
make = find_executable('make', ('gmake', 'make'))
|
make = find_executable('make', ('gmake', 'make'))
|
||||||
pyuic4 = find_executable('pyuic4', ('python2-pyuic4', 'pyuic4-python2.7', 'pyuic4-python2.6', 'pyuic4'))
|
pyuic4 = find_executable('pyuic4', ('python2-pyuic4', 'pyuic4-python2.7', 'pyuic4-python2.6', 'pyuic4'))
|
||||||
if not pyuic4 or not make:
|
if not pyuic4 or not make:
|
||||||
|
|
|
||||||
Loading…
Add table
Add a link
Reference in a new issue