diff options
author | Tristan Van Berkom <tristan.vanberkom@codethink.co.uk> | 2018-04-02 04:02:02 +0900 |
---|---|---|
committer | Tristan Van Berkom <tristan.vanberkom@codethink.co.uk> | 2018-04-02 04:02:02 +0900 |
commit | 999d168ad254e8b02a8d089457aa592b3eb81975 (patch) | |
tree | 1ab6c13e499d9d8ba9c0d4a7845975b6280a4f94 /buildstream/_frontend/widget.py | |
parent | 23cea695fd42bbdaf24e0135697bb70adf134fa0 (diff) | |
download | buildstream-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.
Diffstat (limited to 'buildstream/_frontend/widget.py')
-rw-r--r-- | buildstream/_frontend/widget.py | 2 |
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: |