aboutsummaryrefslogtreecommitdiff
path: root/mesonbuild/modules/windows.py
diff options
context:
space:
mode:
authorJussi Pakkanen <jpakkane@gmail.com>2016-12-31 14:33:42 +0200
committerJussi Pakkanen <jpakkane@gmail.com>2016-12-31 16:28:15 +0200
commitb55235dfbde37661d24881eb989ee651ed9289c5 (patch)
tree5478d7a8483b30ec38338a0482bb52f8941b746c /mesonbuild/modules/windows.py
parent504f974204c79a08d17224c2a91582a47c64fe68 (diff)
downloadmeson-b55235dfbde37661d24881eb989ee651ed9289c5.zip
meson-b55235dfbde37661d24881eb989ee651ed9289c5.tar.gz
meson-b55235dfbde37661d24881eb989ee651ed9289c5.tar.bz2
Fix space before :.
Diffstat (limited to 'mesonbuild/modules/windows.py')
-rw-r--r--mesonbuild/modules/windows.py2
1 files changed, 1 insertions, 1 deletions
diff --git a/mesonbuild/modules/windows.py b/mesonbuild/modules/windows.py
index d034497..56bad2d 100644
--- a/mesonbuild/modules/windows.py
+++ b/mesonbuild/modules/windows.py
@@ -50,7 +50,7 @@ class WindowsModule:
suffix = 'o'
if not rescomp.found():
raise MesonException('Could not find Windows resource compiler %s.' % ' '.join(rescomp.get_command()))
- res_kwargs = {'output' : '@BASENAME@.' + suffix,
+ res_kwargs = {'output': '@BASENAME@.' + suffix,
'arguments': res_args}
res_gen = build.Generator([rescomp], res_kwargs)
res_output = res_gen.process_files('Windows resource', args, state)