Create file

master
Bob Mottram 2019-08-07 14:37:21 +01:00
parent 527c4c2a24
commit d71058ee7e
1 changed files with 3 additions and 3 deletions

View File

@ -24,7 +24,7 @@ def manualDenyFollowRequest(baseDir: str,nickname: str,domain: str,denyHandle: s
return return
if denyHandle not in open(approveFollowsFilename).read(): if denyHandle not in open(approveFollowsFilename).read():
return return
with open(approveFollowsFilename+'.new', 'w') as approvefilenew: with open(approveFollowsFilename+'.new', 'w+') as approvefilenew:
with open(approveFollowsFilename, 'r') as approvefile: with open(approveFollowsFilename, 'r') as approvefile:
for approveHandle in approvefile: for approveHandle in approvefile:
if not approveHandle.startswith(denyHandle): if not approveHandle.startswith(denyHandle):
@ -42,7 +42,7 @@ def addHandleToApproveFile(baseDir: str,nickname: str,domain: str,addHandle: str
if os.path.isfile(approveFollowsFilename): if os.path.isfile(approveFollowsFilename):
if addHandle in open(approveFollowsFilename).read(): if addHandle in open(approveFollowsFilename).read():
appendHandle=False appendHandle=False
with open(approveFollowsFilename+'.add', 'w') as approvefilenew: with open(approveFollowsFilename+'.add', 'w+') as approvefilenew:
with open(approveFollowsFilename, 'r') as approvefile: with open(approveFollowsFilename, 'r') as approvefile:
for handle in approvefile: for handle in approvefile:
approvefilenew.write(handle) approvefilenew.write(handle)
@ -71,7 +71,7 @@ def manualApproveFollowRequest(session,baseDir: str, \
if debug: if debug:
print(handle+' not in '+approveFollowsFilename) print(handle+' not in '+approveFollowsFilename)
return return
with open(approveFollowsFilename+'.new', 'w') as approvefilenew: with open(approveFollowsFilename+'.new', 'w+') as approvefilenew:
with open(approveFollowsFilename, 'r') as approvefile: with open(approveFollowsFilename, 'r') as approvefile:
for handle in approvefile: for handle in approvefile:
if handle.startswith(approveHandle): if handle.startswith(approveHandle):