Handle empty names

merge-requests/30/head
Bob Mottram 2021-03-12 18:13:51 +00:00
parent 8d366d93e4
commit 41132b7914
3 changed files with 8 additions and 5 deletions

View File

@ -306,14 +306,17 @@ def _showLocalBox(boxName: str, startPostIndex=0, noOfPosts=10) -> None:
posStr = str(pos) + '.'
while len(posStr) < 4:
posStr += ' '
name = speakerJson['name']
if speakerJson.get('name'):
name = speakerJson['name']
else:
name = ''
name = (name[:16] + '..') if len(name) > 16 else name
while len(name) < 16:
name += ' '
content = speakerJson['content']
content = (content[:40] + '..') if len(content) > 40 else content
print(posStr + ' | ' + name + ' | ' +
published + ' | ' + content) + ' |'
print(str(posStr) + ' | ' + str(name) + ' | ' +
str(published) + ' | ' + str(content)) + ' |'
print('')

View File

@ -2144,7 +2144,7 @@ def sendPostViaServer(projectVersion: str,
inboxUrl, headers, debug, 60, True)
if not postResult:
if debug:
print('DEBUG: POST failed for c2s to '+inboxUrl)
print('DEBUG: POST failed for c2s to ' + inboxUrl)
return 5
if debug:

View File

@ -352,7 +352,7 @@ def sendRoleViaServer(baseDir: str, session,
postJson(session, newRoleJson, [], inboxUrl, headers, 30, True)
if not postResult:
if debug:
print('DEBUG: POST announce failed for c2s to '+inboxUrl)
print('DEBUG: POST announce failed for c2s to ' + inboxUrl)
# return 5
if debug: