diff options
author | Tristan Van Berkom <tristan.vanberkom@codethink.co.uk> | 2017-12-13 14:28:01 -0500 |
---|---|---|
committer | Tristan Van Berkom <tristan.vanberkom@codethink.co.uk> | 2017-12-13 14:28:01 -0500 |
commit | 7d1124e5361ebfa9612d10f3d93f4d81677c7f48 (patch) | |
tree | 861967c90ab235315db8d16cd031c86efac53c1a /buildstream | |
parent | 819645b230506cb0b2736d08e9c155f24c724cda (diff) | |
download | buildstream-7d1124e5361ebfa9612d10f3d93f4d81677c7f48.tar.gz |
element.py: Removing the exclamation mark from the overlaps warning
Diffstat (limited to 'buildstream')
-rw-r--r-- | buildstream/element.py | 2 |
1 files changed, 1 insertions, 1 deletions
diff --git a/buildstream/element.py b/buildstream/element.py index 5df22f787..7e7037ea5 100644 --- a/buildstream/element.py +++ b/buildstream/element.py @@ -465,7 +465,7 @@ class Element(Plugin): detail = "Staged files overwrite existing files in staging area:\n" for f, elements in overlaps.items(): detail += " /{}: ".format(f) + " above ".join(reversed(elements)) + "\n" - self.warn("Overlaps detected!", detail=detail) + self.warn("Overlaps detected", detail=detail) if ignored: detail = "Not staging files which would replace non-empty directories:\n" |