From 5fe459e656e8ea61be8ef8b7e46fe14d27aa805d Mon Sep 17 00:00:00 2001 From: Bob Mottram Date: Sun, 13 Dec 2020 22:24:41 +0000 Subject: [PATCH] Debug --- follow.py | 1 + 1 file changed, 1 insertion(+) diff --git a/follow.py b/follow.py index d278f85e..3c8389a9 100644 --- a/follow.py +++ b/follow.py @@ -58,6 +58,7 @@ def createInitialLastSeen(baseDir: str, httpPrefix: str) -> None: nickname + '@' + domain + '/users/' + nickname lastSeenFilename = \ lastSeenDir + '/' + actor.replace('/', '#') + '.txt' + print('lastSeenFilename: ' + lastSeenFilename) if not os.path.isfile(lastSeenFilename): with open(lastSeenFilename, 'w+') as fp: fp.write(str(0))