Other way around

main
Bob Mottram 2020-09-25 15:33:20 +01:00
parent 549c531442
commit 803ac11dba
1 changed files with 2 additions and 2 deletions

View File

@ -3342,8 +3342,8 @@ def getNonMutualsOfPerson(baseDir: str,
following = \
getFollowersList(baseDir, nickname, domain, 'following.txt')
nonMutuals = []
for handle in following:
if handle not in followers:
for handle in followers:
if handle not in following:
nonMutuals.append(handle)
return nonMutuals