Remove extraneous formatting call

This commit is contained in:
Christian Rocha 2020-08-25 13:12:31 -04:00 committed by Christian Muehlhaeuser
parent c1496854a8
commit 88523ee94f

View file

@ -353,7 +353,7 @@ func pagerView(m pagerModel) string {
}
if m.showHelp {
fmt.Fprintf(&b, pagerHelpView(m, m.width))
fmt.Fprint(&b, pagerHelpView(m, m.width))
}
return b.String()