fix padding in generic text

This commit is contained in:
Maximilian Keßler 2022-02-17 21:51:03 +01:00
parent 8a871e6f19
commit 030d6906cd

View file

@ -71,7 +71,7 @@ class GenericText:
try:
line = '% ' + line.rstrip().format(**kwargs)
if padding:
line = line.ljust(77) + ' %'
line = line.ljust(79) + '%'
if len(line) > 80:
logger.warning(
'Line too long') # TODO