Remove newlines

main
Bob Mottram 2021-03-15 20:45:41 +00:00
parent 7466725ad2
commit 2c607f3787
1 changed files with 2 additions and 0 deletions

View File

@ -502,6 +502,8 @@ def _postToSpeakerJson(baseDir: str, httpPrefix: str,
follows = fp.readlines() follows = fp.readlines()
if len(follows) > 0: if len(follows) > 0:
followRequestsExist = True followRequestsExist = True
for i in range(len(follows)):
follows[i] = follows[i].strip()
followRequestsList = follows followRequestsList = follows
postDM = False postDM = False
dmFilename = accountsDir + '/.newDM' dmFilename = accountsDir + '/.newDM'