mirror of https://gitlab.com/bashrc2/epicyon
Remove debug
parent
10fde1cb21
commit
2276b5661b
|
@ -77,13 +77,11 @@ def manualApproveFollowRequest(session,baseDir: str, \
|
||||||
accountDir=baseDir+'/accounts/'+handle
|
accountDir=baseDir+'/accounts/'+handle
|
||||||
approveFollowsFilename=accountDir+'/followrequests.txt'
|
approveFollowsFilename=accountDir+'/followrequests.txt'
|
||||||
if not os.path.isfile(approveFollowsFilename):
|
if not os.path.isfile(approveFollowsFilename):
|
||||||
if debug:
|
print('Manual follow accept: follow requests file '+approveFollowsFilename+' not found')
|
||||||
print('Manual follow accept: follow requests file '+approveFollowsFilename+' not found')
|
|
||||||
return
|
return
|
||||||
# is the handle in the requests file?
|
# is the handle in the requests file?
|
||||||
if approveHandle not in open(approveFollowsFilename).read():
|
if approveHandle not in open(approveFollowsFilename).read():
|
||||||
if debug:
|
print('Manual follow accept: '+approveHandle+' not in requests file '+approveFollowsFilename)
|
||||||
print('Manual follow accept: '+approveHandle+' not in requests file '+approveFollowsFilename)
|
|
||||||
return
|
return
|
||||||
|
|
||||||
approvefilenew = open(approveFollowsFilename+'.new', 'w+')
|
approvefilenew = open(approveFollowsFilename+'.new', 'w+')
|
||||||
|
|
Loading…
Reference in New Issue