aboutsummaryrefslogtreecommitdiff
path: root/mesonbuild/modules/qt4.py
diff options
context:
space:
mode:
authorJussi Pakkanen <jpakkane@gmail.com>2017-01-03 16:04:24 -0500
committerGitHub <noreply@github.com>2017-01-03 16:04:24 -0500
commit56e2c46ce1cb1ffb4f0fe56c6462954dd00f33c4 (patch)
tree5c21f10908d00cf9c74d9d386380c42cff73060f /mesonbuild/modules/qt4.py
parent55cdba635e61b68658e0d209a58cfb2f1537df93 (diff)
parentef3cc6b3fabb1032066e7c8ecfd67dc4e1169193 (diff)
downloadmeson-56e2c46ce1cb1ffb4f0fe56c6462954dd00f33c4.zip
meson-56e2c46ce1cb1ffb4f0fe56c6462954dd00f33c4.tar.gz
meson-56e2c46ce1cb1ffb4f0fe56c6462954dd00f33c4.tar.bz2
Merge pull request #1272 from mesonbuild/ignatenko/lint
fix some linting errors
Diffstat (limited to 'mesonbuild/modules/qt4.py')
-rw-r--r--mesonbuild/modules/qt4.py6
1 files changed, 3 insertions, 3 deletions
diff --git a/mesonbuild/modules/qt4.py b/mesonbuild/modules/qt4.py
index 8670533..beb7ca5 100644
--- a/mesonbuild/modules/qt4.py
+++ b/mesonbuild/modules/qt4.py
@@ -44,7 +44,7 @@ class Qt4Module():
moc_ver = stderr
else:
raise MesonException('Moc preprocessor is not for Qt 4. Output:\n%s\n%s' %
- (stdout, stderr))
+ (stdout, stderr))
mlog.log(' moc:', mlog.green('YES'), '(%s, %s)' % \
(' '.join(self.moc.fullpath), moc_ver.split()[-1]))
else:
@@ -57,7 +57,7 @@ class Qt4Module():
uic_ver = stderr
else:
raise MesonException('Uic compiler is not for Qt4. Output:\n%s\n%s' %
- (stdout, stderr))
+ (stdout, stderr))
mlog.log(' uic:', mlog.green('YES'), '(%s, %s)' % \
(' '.join(self.uic.fullpath), uic_ver.split()[-1]))
else:
@@ -70,7 +70,7 @@ class Qt4Module():
rcc_ver = stderr
else:
raise MesonException('Rcc compiler is not for Qt 4. Output:\n%s\n%s' %
- (stdout, stderr))
+ (stdout, stderr))
mlog.log(' rcc:', mlog.green('YES'), '(%s, %s)'\
% (' '.join(self.rcc.fullpath), rcc_ver.split()[-1]))
else: