diff options
author | Igor Gnatenko <i.gnatenko.brain@gmail.com> | 2016-12-31 20:19:38 +0100 |
---|---|---|
committer | Jussi Pakkanen <jpakkane@gmail.com> | 2017-01-01 12:02:05 -0500 |
commit | 116da33cddeb1793329ddefcc0e6db74679931f2 (patch) | |
tree | e373c9cf07b74ac5a8d7c97212377860cb60ca3b /mesonbuild/build.py | |
parent | ea570bcb6704629a4a503548865a8dc19c872a39 (diff) | |
download | meson-116da33cddeb1793329ddefcc0e6db74679931f2.zip meson-116da33cddeb1793329ddefcc0e6db74679931f2.tar.gz meson-116da33cddeb1793329ddefcc0e6db74679931f2.tar.bz2 |
style: fix E128 violations
E128: continuation line under-indented for visual indent
Signed-off-by: Igor Gnatenko <i.gnatenko.brain@gmail.com>
Diffstat (limited to 'mesonbuild/build.py')
-rw-r--r-- | mesonbuild/build.py | 10 |
1 files changed, 5 insertions, 5 deletions
diff --git a/mesonbuild/build.py b/mesonbuild/build.py index ec4bda2..826858d 100644 --- a/mesonbuild/build.py +++ b/mesonbuild/build.py @@ -731,12 +731,12 @@ class BuildTarget(): # This should be reliable enough. if hasattr(dep, 'subproject'): raise InvalidArguments('Tried to use subproject object as a dependency.\n' - 'You probably wanted to use a dependency declared in it instead.\n' - 'Access it by calling get_variable() on the subproject object.') + 'You probably wanted to use a dependency declared in it instead.\n' + 'Access it by calling get_variable() on the subproject object.') raise InvalidArguments('Argument is of an unacceptable type {!r}.\nMust be ' - 'either an external dependency (returned by find_library() or ' - 'dependency()) or an internal dependency (returned by ' - 'declare_dependency()).'.format(type(dep).__name__)) + 'either an external dependency (returned by find_library() or ' + 'dependency()) or an internal dependency (returned by ' + 'declare_dependency()).'.format(type(dep).__name__)) def get_external_deps(self): return self.external_deps |