Missing comma

main
Bob Mottram 2020-10-28 09:55:57 +00:00
parent afe385d5d2
commit e365ea4e4c
1 changed files with 2 additions and 2 deletions

View File

@ -108,7 +108,7 @@ def manualApproveFollowRequest(session, baseDir: str,
if approveHandle not in approveFollowsStr: if approveHandle not in approveFollowsStr:
print('Manual follow accept: ' + approveHandle + print('Manual follow accept: ' + approveHandle +
' not in requests file ' + approveFollowsFilename + ' not in requests file ' + approveFollowsFilename +
'\n"' + approveFollowsStr.replace('\n' ' ') + '"') '\n"' + approveFollowsStr.replace('\n', ' ') + '"')
exists = False exists = False
elif '@' in approveHandle: elif '@' in approveHandle:
reqNick = approveHandle.split('@')[0] reqNick = approveHandle.split('@')[0]
@ -126,7 +126,7 @@ def manualApproveFollowRequest(session, baseDir: str,
if not exists: if not exists:
print('Manual follow accept: ' + approveHandleFull + print('Manual follow accept: ' + approveHandleFull +
' not in requests file "' + ' not in requests file "' +
approveFollowsStr.replace('\n' ' ') + approveFollowsStr.replace('\n', ' ') +
'" ' + approveFollowsFilename) '" ' + approveFollowsFilename)
if not exists: if not exists:
return return