lib: restore blank line after show route header

In 5a3cf85391 the trailing empty line
following the "show ip(v6) route" header was removed. Restore it for
consistency.

Signed-off-by: Duncan Eastoe <duncan.eastoe@att.com>
This commit is contained in:
Duncan Eastoe 2021-01-26 12:19:05 +00:00
parent ec20380c34
commit e3490d1fa2

View File

@ -130,7 +130,7 @@ sub codelist {
$str =~ s/ $//;
push @lines, $str . "\\n\" \\\n";
push @lines, " \" > - selected route, * - FIB route, q - queued, r - rejected, b - backup\\n\"";
push @lines, " \" t - trapped, o - offload failure\\n\"";
push @lines, " \" t - trapped, o - offload failure\\n\\n\"";
return join("", @lines);