diff options
author | Igor Gnatenko <i.gnatenko.brain@gmail.com> | 2017-01-02 19:16:56 +0100 |
---|---|---|
committer | Igor Gnatenko <i.gnatenko.brain@gmail.com> | 2017-01-02 19:16:56 +0100 |
commit | ef3cc6b3fabb1032066e7c8ecfd67dc4e1169193 (patch) | |
tree | 8bcd676df78fe0973daf921f6f1fda79a67fd2f7 /mesonbuild/wrap/wrap.py | |
parent | cdd05aa5dce3229dac09359303438ae98e1f100b (diff) | |
download | meson-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/wrap/wrap.py')
-rw-r--r-- | mesonbuild/wrap/wrap.py | 6 |
1 files changed, 3 insertions, 3 deletions
diff --git a/mesonbuild/wrap/wrap.py b/mesonbuild/wrap/wrap.py index dead6fb..d812b4e 100644 --- a/mesonbuild/wrap/wrap.py +++ b/mesonbuild/wrap/wrap.py @@ -133,9 +133,9 @@ class Resolver: is_there = True except subprocess.CalledProcessError: raise RuntimeError('%s is not empty but is not a valid ' - 'git repository, we can not work with it' - ' as a subproject directory.' % ( - checkoutdir)) + 'git repository, we can not work with it' + ' as a subproject directory.' % ( + checkoutdir)) if revno.lower() == 'head': # Failure to do pull is not a fatal error, |