Remove str

merge-requests/21/head
Bob Mottram 2021-03-15 18:38:45 +00:00
parent eb609bb6be
commit 8c591ee55e
1 changed files with 2 additions and 2 deletions

View File

@ -465,8 +465,8 @@ def _showLocalBox(notifyJson: {}, boxName: str,
content = (content[:38]) if len(content) > 38 else content content = (content[:38]) if len(content) > 38 else content
while len(content) < 40: while len(content) < 40:
content += ' ' content += ' '
print(indent + str(posStr) + ' | ' + str(name) + ' | ' + print(indent + str(posStr) + ' | ' + name + ' | ' +
str(published) + ' | ' + str(content) + ' |') published + ' | ' + content + ' |')
ctr += 1 ctr += 1
print('') print('')