main
Bob Mottram 2021-03-12 18:26:24 +00:00
parent b2d38b3d05
commit c3eaae34f3
1 changed files with 2 additions and 0 deletions

View File

@ -315,6 +315,8 @@ def _showLocalBox(boxName: str, startPostIndex=0, noOfPosts=10) -> None:
name += ' '
content = speakerJson['content']
content = (content[:40]) if len(content) > 40 else content
while len(content) < 40:
content += ' '
print(str(posStr) + ' | ' + str(name) + ' | ' +
str(published) + ' | ' + str(content) + ' |')
print('')