aboutsummaryrefslogtreecommitdiff
path: root/mesonbuild/modules/gnome.py
diff options
context:
space:
mode:
authorIgor Gnatenko <i.gnatenko.brain@gmail.com>2017-01-02 19:16:56 +0100
committerIgor Gnatenko <i.gnatenko.brain@gmail.com>2017-01-02 19:16:56 +0100
commitef3cc6b3fabb1032066e7c8ecfd67dc4e1169193 (patch)
tree8bcd676df78fe0973daf921f6f1fda79a67fd2f7 /mesonbuild/modules/gnome.py
parentcdd05aa5dce3229dac09359303438ae98e1f100b (diff)
downloadmeson-ef3cc6b3fabb1032066e7c8ecfd67dc4e1169193.zip
meson-ef3cc6b3fabb1032066e7c8ecfd67dc4e1169193.tar.gz
meson-ef3cc6b3fabb1032066e7c8ecfd67dc4e1169193.tar.bz2
style: fix E127 violations
E127: continuation line over-indented for visual indent Signed-off-by: Igor Gnatenko <i.gnatenko.brain@gmail.com>
Diffstat (limited to 'mesonbuild/modules/gnome.py')
-rw-r--r--mesonbuild/modules/gnome.py15
1 files changed, 7 insertions, 8 deletions
diff --git a/mesonbuild/modules/gnome.py b/mesonbuild/modules/gnome.py
index 3f88585..f7aa0f2 100644
--- a/mesonbuild/modules/gnome.py
+++ b/mesonbuild/modules/gnome.py
@@ -593,15 +593,15 @@ can not be used with the current version of glib-compiled-resources, due to
'--id=' + project_id,
'--sources=' + source_str]
pottarget = build.RunTarget('help-' + project_id + '-pot', sys.executable,
- potargs, [], state.subdir)
+ potargs, [], state.subdir)
poargs = [state.environment.get_build_command(), '--internal', 'yelphelper', 'update-po',
- '--subdir=' + state.subdir,
- '--id=' + project_id,
- '--sources=' + source_str,
- '--langs=' + '@@'.join(langs)]
+ '--subdir=' + state.subdir,
+ '--id=' + project_id,
+ '--sources=' + source_str,
+ '--langs=' + '@@'.join(langs)]
potarget = build.RunTarget('help-' + project_id + '-update-po', sys.executable,
- poargs, [], state.subdir)
+ poargs, [], state.subdir)
return [inscript, pottarget, potarget]
@@ -1015,8 +1015,7 @@ can not be used with the current version of glib-compiled-resources, due to
for i in inputs:
if isinstance(i, str):
cmd.append(os.path.join(source_dir, i))
- elif hasattr(i, 'held_object') \
- and isinstance(i.held_object, GirTarget):
+ elif hasattr(i, 'held_object') and isinstance(i.held_object, GirTarget):
link_with += self._get_vapi_link_with(i.held_object)
subdir = os.path.join(state.environment.get_build_dir(),
i.held_object.get_subdir())