forked from indymedia/epicyon
Missing comma
parent
afe385d5d2
commit
e365ea4e4c
|
@ -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
|
||||||
|
|
Loading…
Reference in New Issue