Remove extra newswire items

main
Bob Mottram 2020-11-22 12:05:15 +00:00
parent 7a01f422cf
commit d1295a94f0
1 changed files with 8 additions and 2 deletions

View File

@ -733,7 +733,13 @@ def getDictFromNewswire(session, baseDir: str, domain: str,
# are there too many posts? If so then remove the oldest ones # are there too many posts? If so then remove the oldest ones
noOfPosts = len(sortedResult.items()) noOfPosts = len(sortedResult.items())
if noOfPosts > maxNewswirePosts: if noOfPosts > maxNewswirePosts:
for n in range(noOfPosts - maxNewswirePosts): ctr = 0
sortedResult.pop() removals = []
for dateStr, item in sortedResult.items():
ctr += 1
if ctr >= maxNewswirePosts:
removals.append(dateStr)
for r in removals:
sortedResult.pop(r)
return sortedResult return sortedResult