From bcdc9cbf5c3f8dc04bcf39acef0e4d17daf37587 Mon Sep 17 00:00:00 2001 From: Bob Mottram Date: Wed, 11 Aug 2021 13:46:39 +0100 Subject: [PATCH] Remove debug --- follow.py | 1 - 1 file changed, 1 deletion(-) diff --git a/follow.py b/follow.py index 04a0dbc31..8d70adb59 100644 --- a/follow.py +++ b/follow.py @@ -70,7 +70,6 @@ def createInitialLastSeen(baseDir: str, httpPrefix: str) -> None: httpPrefix + '://' + 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(100))