List index

main2
Bob Mottram 2019-11-06 14:54:17 +00:00
parent 74a0b0b2c1
commit 6572e57d9d
1 changed files with 6 additions and 6 deletions

View File

@ -2297,11 +2297,9 @@ def archivePostsForPerson(httpPrefix: str,nickname: str,domain: str,baseDir: str
publishedStr=content.split('"published":')[1]
if '"' in publishedStr:
publishedStr=publishedStr.split('"')[1]
print('publishedStr: '+publishedStr)
postsInBoxDict[secondsSinceEpoch]=postFilename
postsCtr+=1
return
if publishedStr.endswith('Z'):
postsInBoxDict[publishedStr]=postFilename
postsCtr+=1
noOfPosts=postsCtr
if noOfPosts<=maxPostsInBox:
@ -2313,7 +2311,9 @@ def archivePostsForPerson(httpPrefix: str,nickname: str,domain: str,baseDir: str
# directory containing cached html posts
postCacheDir=boxDir.replace('/'+boxname,'/postcache')
for secondsSinceEpoch,postFilename in postsInBoxSorted.items():
for publishedStr,postFilename in postsInBoxSorted.items():
print('publishedStr: '+publishedStr)
break
filePath=os.path.join(boxDir,postFilename)
if not os.path.isfile(filePath):
continue