diff options
author | Igor Gnatenko <i.gnatenko.brain@gmail.com> | 2016-12-31 20:04:39 +0100 |
---|---|---|
committer | Jussi Pakkanen <jpakkane@gmail.com> | 2017-01-01 12:02:05 -0500 |
commit | ef608f217dbd0cb7f263162c5a067d6cde8aac13 (patch) | |
tree | cbdbabcee4c6c003cca0a03b894b25fffb07645d /mesonbuild/build.py | |
parent | 2017d8578af20d2f82cefb3a91889a15105c06b2 (diff) | |
download | meson-ef608f217dbd0cb7f263162c5a067d6cde8aac13.zip meson-ef608f217dbd0cb7f263162c5a067d6cde8aac13.tar.gz meson-ef608f217dbd0cb7f263162c5a067d6cde8aac13.tar.bz2 |
style: fix E222 violations
E222: multiple spaces after operator
Signed-off-by: Igor Gnatenko <i.gnatenko.brain@gmail.com>
Diffstat (limited to 'mesonbuild/build.py')
-rw-r--r-- | mesonbuild/build.py | 2 |
1 files changed, 1 insertions, 1 deletions
diff --git a/mesonbuild/build.py b/mesonbuild/build.py index 304dd40..c517c5b 100644 --- a/mesonbuild/build.py +++ b/mesonbuild/build.py @@ -330,7 +330,7 @@ class BuildTarget(): if isinstance(s, (str, File, ExtractedObjects)): self.objects.append(s) elif isinstance(s, (GeneratedList, CustomTarget)): - msg = 'Generated files are not allowed in the \'objects\' kwarg ' + \ + msg = 'Generated files are not allowed in the \'objects\' kwarg ' + \ 'for target {!r}.\nIt is meant only for '.format(self.name) + \ 'pre-built object files that are shipped with the\nsource ' + \ 'tree. Try adding it in the list of sources.' |