log-parse: fix error message when no error lines are found (#10543)

This commit is contained in:
Massimiliano Culpo 2019-02-07 19:19:19 +01:00 committed by Peter Scheibel
parent b8684b318c
commit 58f1dc037a

View File

@ -76,7 +76,7 @@ def make_log_context(log_events, width=None):
error_lines = set(e.line_no for e in log_events)
log_events = sorted(log_events, key=lambda e: e.line_no)
num_width = len(str(max(error_lines))) + 4
num_width = len(str(max(error_lines or [0]))) + 4
line_fmt = '%%-%dd%%s' % num_width
indent = ' ' * (5 + num_width)