diff options
author | Jussi Pakkanen <jpakkane@gmail.com> | 2016-12-31 14:33:42 +0200 |
---|---|---|
committer | Jussi Pakkanen <jpakkane@gmail.com> | 2016-12-31 16:28:15 +0200 |
commit | b55235dfbde37661d24881eb989ee651ed9289c5 (patch) | |
tree | 5478d7a8483b30ec38338a0482bb52f8941b746c /mesonbuild/modules/gnome.py | |
parent | 504f974204c79a08d17224c2a91582a47c64fe68 (diff) | |
download | meson-b55235dfbde37661d24881eb989ee651ed9289c5.zip meson-b55235dfbde37661d24881eb989ee651ed9289c5.tar.gz meson-b55235dfbde37661d24881eb989ee651ed9289c5.tar.bz2 |
Fix space before :.
Diffstat (limited to 'mesonbuild/modules/gnome.py')
-rw-r--r-- | mesonbuild/modules/gnome.py | 14 |
1 files changed, 7 insertions, 7 deletions
diff --git a/mesonbuild/modules/gnome.py b/mesonbuild/modules/gnome.py index ebd819a..95113a0 100644 --- a/mesonbuild/modules/gnome.py +++ b/mesonbuild/modules/gnome.py @@ -503,10 +503,10 @@ can not be used with the current version of glib-compiled-resources, due to elif isinstance(girtarget, build.SharedLibrary): libname = girtarget.get_basename() scan_command += ['--library', libname] - scankwargs = {'output' : girfile, - 'input' : libsources, - 'command' : scan_command, - 'depends' : depends, + scankwargs = {'output': girfile, + 'input': libsources, + 'command': scan_command, + 'depends': depends, } if kwargs.get('install'): scankwargs['install'] = kwargs['install'] @@ -739,9 +739,9 @@ can not be used with the current version of glib-compiled-resources, due to cmd += ['--c-namespace', kwargs.pop('namespace')] cmd += ['--generate-c-code', '@OUTDIR@/' + namebase, '@INPUT@'] outputs = [namebase + '.c', namebase + '.h'] - custom_kwargs = {'input' : xml_file, - 'output' : outputs, - 'command' : cmd + custom_kwargs = {'input': xml_file, + 'output': outputs, + 'command': cmd } return build.CustomTarget(target_name, state.subdir, custom_kwargs) |