From 498d9035112ad7cedef15985f9af591c6f473920 Mon Sep 17 00:00:00 2001 From: Bob Mottram Date: Sun, 13 Dec 2020 22:20:28 +0000 Subject: [PATCH] Remove newlines --- follow.py | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/follow.py b/follow.py index a8b2bd89f..5fe8f9f69 100644 --- a/follow.py +++ b/follow.py @@ -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