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/i18n.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/i18n.py')
-rw-r--r-- | mesonbuild/modules/i18n.py | 6 |
1 files changed, 4 insertions, 2 deletions
diff --git a/mesonbuild/modules/i18n.py b/mesonbuild/modules/i18n.py index 2af09de..76edb72 100644 --- a/mesonbuild/modules/i18n.py +++ b/mesonbuild/modules/i18n.py @@ -72,8 +72,10 @@ class I18nModule(ExtensionModule): datadirs = self._get_data_dirs(state, mesonlib.stringlistify(kwargs.pop('data_dirs', []))) datadirs = '--datadirs=' + ':'.join(datadirs) if datadirs else None - command = state.environment.get_build_command() + ['--internal', 'msgfmthelper', - '@INPUT@', '@OUTPUT@', file_type, podir] + command = state.environment.get_build_command() + [ + '--internal', 'msgfmthelper', + '@INPUT@', '@OUTPUT@', file_type, podir + ] if datadirs: command.append(datadirs) |