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'
if os.path.isfile(followersFilename):
if approveHandle not in open(followersFilename).read():
followersFile=open(followersFilename, "a+")
followersFile.write(approveHandle+'\n')
followersFile.close()
try:
with open(followersFilename, 'r+') as followersFile:
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:
followersFile=open(followersFilename, "w+")
followersFile.write(approveHandle+'\n')