diff options
author | Luke Shumaker <lukeshu@lukeshu.com> | 2017-09-21 11:48:30 -0400 |
---|---|---|
committer | Luke Shumaker <lukeshu@lukeshu.com> | 2017-09-21 11:59:03 -0400 |
commit | bb25260f001c741d419f5732da4431a548b0749d (patch) | |
tree | 682f5892f36a3ba65f54b31d10acbf67f2904db1 /mesonbuild/modules/gnome.py | |
parent | 751d59d95238e9f2ef12202df992d54650594919 (diff) | |
download | meson-bb25260f001c741d419f5732da4431a548b0749d.zip meson-bb25260f001c741d419f5732da4431a548b0749d.tar.gz meson-bb25260f001c741d419f5732da4431a548b0749d.tar.bz2 |
flake8: Perform suggested whitespace/formatting changes
This only touches newlines, spaces, and (occaisionally) commas. Anything
else is left for another commit.
Diffstat (limited to 'mesonbuild/modules/gnome.py')
-rw-r--r-- | mesonbuild/modules/gnome.py | 22 |
1 files changed, 13 insertions, 9 deletions
diff --git a/mesonbuild/modules/gnome.py b/mesonbuild/modules/gnome.py index 137d380..12d3f90 100644 --- a/mesonbuild/modules/gnome.py +++ b/mesonbuild/modules/gnome.py @@ -697,18 +697,22 @@ This will become a hard error in the future.''') args.append('--langs=' + '@@'.join(langs)) inscript = build.RunScript(script, args) - potargs = state.environment.get_build_command() + ['--internal', 'yelphelper', 'pot', - '--subdir=' + state.subdir, - '--id=' + project_id, - '--sources=' + source_str] + potargs = state.environment.get_build_command() + [ + '--internal', 'yelphelper', 'pot', + '--subdir=' + state.subdir, + '--id=' + project_id, + '--sources=' + source_str, + ] pottarget = build.RunTarget('help-' + project_id + '-pot', potargs[0], potargs[1:], [], state.subdir) - poargs = state.environment.get_build_command() + ['--internal', 'yelphelper', 'update-po', - '--subdir=' + state.subdir, - '--id=' + project_id, - '--sources=' + source_str, - '--langs=' + '@@'.join(langs)] + poargs = state.environment.get_build_command() + [ + '--internal', 'yelphelper', 'update-po', + '--subdir=' + state.subdir, + '--id=' + project_id, + '--sources=' + source_str, + '--langs=' + '@@'.join(langs), + ] potarget = build.RunTarget('help-' + project_id + '-update-po', poargs[0], poargs[1:], [], state.subdir) |