summaryrefslogtreecommitdiff
diff options
context:
space:
mode:
authorTristan Van Berkom <tristan.vanberkom@codethink.co.uk>2018-04-02 04:02:02 +0900
committerTristan Van Berkom <tristan.vanberkom@codethink.co.uk>2018-04-02 04:02:02 +0900
commit999d168ad254e8b02a8d089457aa592b3eb81975 (patch)
tree1ab6c13e499d9d8ba9c0d4a7845975b6280a4f94
parent23cea695fd42bbdaf24e0135697bb70adf134fa0 (diff)
downloadbuildstream-999d168ad254e8b02a8d089457aa592b3eb81975.tar.gz
_frontend/widget.py: Change heading separator to use '=' instead of '~'
Seems that using `~` conflicts with some markdown when trying to paste build logs in, e.g. gitlab issues.
-rw-r--r--buildstream/_frontend/widget.py2
1 files changed, 1 insertions, 1 deletions
diff --git a/buildstream/_frontend/widget.py b/buildstream/_frontend/widget.py
index 03bb58d65..90b573636 100644
--- a/buildstream/_frontend/widget.py
+++ b/buildstream/_frontend/widget.py
@@ -549,7 +549,7 @@ class LogLine(Widget):
text += '\n'
# Separator line before following output
- text += self.format_profile.fmt("~" * 79 + '\n')
+ text += self.format_profile.fmt("=" * 79 + '\n')
click.echo(text, color=styling, nl=False, err=True)
if log_file: