From 513d0784e4f112eb6534c58c9bcad9d1b4eb94b0 Mon Sep 17 00:00:00 2001 From: Bob Mottram Date: Fri, 9 Oct 2020 13:52:56 +0100 Subject: [PATCH] Remove debug --- posts.py | 4 ---- utils.py | 2 -- 2 files changed, 6 deletions(-) diff --git a/posts.py b/posts.py index 2a05687a..e67503df 100644 --- a/posts.py +++ b/posts.py @@ -2925,15 +2925,11 @@ def createBoxIndexed(recentPostsCache: {}, # that this post is moderated arrivalDate = \ locateNewsArrival(baseDir, domain, postFilename) - print('Arrival: ' + str(arrivalDate)) if arrivalDate: - print('Arrival: date ' + str(arrivalDate)) # how long has elapsed since this post arrived? currDate = datetime.datetime.utcnow() timeDiffMins = \ int((currDate - arrivalDate).total_seconds() / 60) - print('Arrival: mins ' + \ - str(timeDiffMins) + ' ' + str(votingTimeMins)) # has the voting time elapsed? if timeDiffMins < votingTimeMins: # voting is still happening, so don't add this diff --git a/utils.py b/utils.py index 5f78de87..4ae804dd 100644 --- a/utils.py +++ b/utils.py @@ -552,11 +552,9 @@ def locateNewsArrival(baseDir: str, domain: str, accountDir = baseDir + '/accounts/news@' + domain + '/' postFilename = accountDir + 'outbox/' + postUrl - print('Arrival: ' + str(postFilename)) if os.path.isfile(postFilename): with open(postFilename, 'r') as arrivalFile: arrival = arrivalFile.read() - print('Arrival: content ' + str(arrival)) if arrival: arrivalDate = \ datetime.datetime.strptime(arrival,