From 8f89f039d3f31d5209b0171f8dcbaa6f49fc6d06 Mon Sep 17 00:00:00 2001 From: =?UTF-8?q?Philipp=20H=C3=B6rist?= Date: Sat, 6 Oct 2018 23:06:07 +0200 Subject: [PATCH] Fix pylint error --- gajim/common/contacts.py | 4 ++-- 1 file changed, 2 insertions(+), 2 deletions(-) diff --git a/gajim/common/contacts.py b/gajim/common/contacts.py index a2ef1a04d..59c8c0051 100644 --- a/gajim/common/contacts.py +++ b/gajim/common/contacts.py @@ -402,8 +402,8 @@ class LegacyContactsAPI: for jid in self.get_jid_list(account): if jid == our_jid: continue - if common.app.jid_is_transport(jid) and not \ - _('Transports') in groups: + if (common.app.jid_is_transport(jid) and + _('Transports') not in groups): # do not count transports continue if self.has_brother(account, jid, accounts) and not \