diff options
author | Mike Sinkovsky <msink@permonline.ru> | 2017-01-09 15:14:24 +0500 |
---|---|---|
committer | Jussi Pakkanen <jpakkane@gmail.com> | 2017-01-11 12:33:27 -0500 |
commit | 5b626ab4cb8ee6024394945e716e3a5426216260 (patch) | |
tree | 4db6f656f69906e9f00c97a938a8da17548b7282 /mesonbuild/build.py | |
parent | 0dd1e338989c4d0517eab8efbfa008e0e3e841a9 (diff) | |
download | meson-5b626ab4cb8ee6024394945e716e3a5426216260.zip meson-5b626ab4cb8ee6024394945e716e3a5426216260.tar.gz meson-5b626ab4cb8ee6024394945e716e3a5426216260.tar.bz2 |
style: [E1**] Indentation
Diffstat (limited to 'mesonbuild/build.py')
-rw-r--r-- | mesonbuild/build.py | 6 |
1 files changed, 3 insertions, 3 deletions
diff --git a/mesonbuild/build.py b/mesonbuild/build.py index 16ef5aa..8fa6ada 100644 --- a/mesonbuild/build.py +++ b/mesonbuild/build.py @@ -289,9 +289,9 @@ class BuildTarget(): self.process_objectlist(objects) self.process_kwargs(kwargs, environment) self.check_unknown_kwargs(kwargs) - if len(self.sources) == 0 and \ - len(self.generated) == 0 and \ - len(self.objects) == 0: + if len(self.sources) == 0 \ + and len(self.generated) == 0 \ + and len(self.objects) == 0: raise InvalidArguments('Build target %s has no sources.' % name) self.process_compilers() self.validate_sources() |