Remove newlines

merge-requests/8/head
Bob Mottram 2020-12-13 22:20:28 +00:00
parent e87fd5a168
commit 498d903511
1 changed files with 1 additions and 1 deletions

View File

@ -51,7 +51,7 @@ def createInitialLastSeen(baseDir: str, httpPrefix: str) -> None:
if '@' not in handle:
continue
nickname = handle.split('@')[0]
domain = handle.split('@')[1]
domain = handle.split('@')[1].strip()
actor = \
httpPrefix + '://' + \
nickname + '@' + domain + '/users/' + nickname