From f56c605be5ef79da4bf3c188679c15e378cdb4ac Mon Sep 17 00:00:00 2001 From: Jonathan Corbet Date: Thu, 14 Jan 2021 10:35:24 -0700 Subject: [PATCH] missingmaints: fix partial-row formatting All maintainers for a subsystem should display the same way. --- missingmaints | 5 +++-- 1 file changed, 3 insertions(+), 2 deletions(-) diff --git a/missingmaints b/missingmaints index da6e664..c55478a 100755 --- a/missingmaints +++ b/missingmaints @@ -386,7 +386,8 @@ def rowclass(): def dump_subsys_html(ss): span = max(1, len(ss.maints)) - print(f''' + rc = rowclass() + print(f''' {ss.name} {dump_pdate(ss.last_activity)}''') if not ss.maints: @@ -405,7 +406,7 @@ def dump_subsys_html(ss): else: print('\t ——') print('') - rowstart = '' + rowstart = f'' def load_pickle(pfile): global Subsystems -- 2.11.4.GIT