From 82bffbd6605bb752ced6f26b56d75f0b2d1dbec7 Mon Sep 17 00:00:00 2001 From: Romain Bignon Date: Thu, 2 Feb 2012 10:13:17 +0100 Subject: [PATCH] improve error message when qt4 is not found (closes #733) --- setup.py | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/setup.py b/setup.py index f599cf17ef..600e69d93e 100755 --- a/setup.py +++ b/setup.py @@ -82,7 +82,7 @@ def check_executable_unix(executable, error): def build_qt(): print 'Building Qt applications' - pyuic4 = check_executable('pyuic4', 'To disable Qt applications, use --no-qt.') + pyuic4 = check_executable('pyuic4', 'Install PyQt4-devel or disable Qt applications (with --no-qt).') if sys.platform == 'win32': env={ 'PYUIC' : pyuic4, 'PATH':os.environ['PATH']} -- GitLab