Remove newline

alt-html-css
Bob Mottram 2020-12-13 22:24:02 +00:00
parent f3e0d4e17c
commit f1886ddd9c
1 changed files with 1 additions and 1 deletions

View File

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