Prepend to followers file

main2
Bob Mottram 2019-11-05 13:13:55 +00:00
parent cd98704ce5
commit 667d0262ea
1 changed files with 7 additions and 3 deletions

View File

@ -128,9 +128,13 @@ def manualApproveFollowRequest(session,baseDir: str, \
followersFilename=accountsDir+'/followers.txt' followersFilename=accountsDir+'/followers.txt'
if os.path.isfile(followersFilename): if os.path.isfile(followersFilename):
if approveHandle not in open(followersFilename).read(): if approveHandle not in open(followersFilename).read():
followersFile=open(followersFilename, "a+") try:
followersFile.write(approveHandle+'\n') with open(followersFilename, 'r+') as followersFile:
followersFile.close() content = followersFile.read()
followersFile.seek(0, 0)
followersFile.write(approveHandle+'\n'+content)
except Exception as e:
print('WARN: Failed to write entry to followers file '+str(e))
else: else:
followersFile=open(followersFilename, "w+") followersFile=open(followersFilename, "w+")
followersFile.write(approveHandle+'\n') followersFile.write(approveHandle+'\n')