diff options
author | Timothy Pearson <kb9vqf@pearsoncomputing.net> | 2011-12-05 22:02:42 -0600 |
---|---|---|
committer | Timothy Pearson <kb9vqf@pearsoncomputing.net> | 2011-12-05 22:02:42 -0600 |
commit | 8c9e5c21b7246ebab379d6d36120992c5e82501e (patch) | |
tree | bd3e2823a96f8cfb35b30b9514a3bc3d6e8857e7 /configure.py | |
parent | 74420664aeaa6bb4d9bbde7f70a3b4468d24be60 (diff) | |
download | pytde-8c9e5c21b7246ebab379d6d36120992c5e82501e.tar.gz pytde-8c9e5c21b7246ebab379d6d36120992c5e82501e.zip |
Fix retquire
Diffstat (limited to 'configure.py')
-rw-r--r-- | configure.py | 6 |
1 files changed, 3 insertions, 3 deletions
diff --git a/configure.py b/configure.py index ac9dd28..d75cd0f 100644 --- a/configure.py +++ b/configure.py @@ -199,7 +199,7 @@ def init_and_check_sanity (): minv = sip_min_v4_version if minv: - sipcfg.error("This version of PyKDE retquires SIP v%s or later" % sipcfg.version_to_string(minv)) + sipcfg.error("This version of PyKDE requires SIP v%s or later" % sipcfg.version_to_string(minv)) # Check SIP has TQt support enabled and check version if pyqtcfg.qt_version == 0: @@ -210,11 +210,11 @@ def init_and_check_sanity (): # Check PyTQt built with libtqt-mt if pyqtcfg.qt_threaded == 0: - sipconfig.error ("PyKDE retquires a threaded TQt version (libtqt-mt)") + sipconfig.error ("PyKDE requires a threaded TQt version (libtqt-mt)") # Check PyTQt version if pyqtcfg.pyqt_version < pyqt_min_version: - sipcfg.error("This version of PyKDE retquires PyTQt v%s or later"\ + sipcfg.error("This version of PyKDE requires PyTQt v%s or later"\ % pyqtcfg.version_to_string(pyqtcfg.pyqt_version)) # find the libs, includes, and version info |