From 803ac11dba45b619a4326cb103936122427bb558 Mon Sep 17 00:00:00 2001 From: Bob Mottram Date: Fri, 25 Sep 2020 15:33:20 +0100 Subject: [PATCH] Other way around --- posts.py | 4 ++-- 1 file changed, 2 insertions(+), 2 deletions(-) diff --git a/posts.py b/posts.py index 42d0769c..cffc4d8f 100644 --- a/posts.py +++ b/posts.py @@ -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