From f748e893fb333f65f1f019df5e8186204ea645dc Mon Sep 17 00:00:00 2001
From: Yann Leboulanger <asterix@lagaule.org>
Date: Fri, 24 Jul 2009 16:17:49 +0200
Subject: [PATCH] prevent traceback

---
 src/roster_window.py | 15 ++++++++-------
 1 file changed, 8 insertions(+), 7 deletions(-)

diff --git a/src/roster_window.py b/src/roster_window.py
index 7469555286..f2ccdc3707 100644
--- a/src/roster_window.py
+++ b/src/roster_window.py
@@ -763,13 +763,14 @@ class RosterWindow:
 			# Remove contact before redrawing, otherwise the old
 			# numbers will still be show
 			gajim.contacts.remove_jid(account, jid, remove_meta=True)
-			rest_of_family = [data for data in family
-				if account != data['account'] or jid != data['jid']]
-			if iters and rest_of_family:
-				# reshow the rest of the family
-				brothers = self._add_metacontact_family(rest_of_family, account)
-				for c, acc in brothers:
-					self.draw_completely(c.jid, acc)
+			if iters:
+				rest_of_family = [data for data in family
+					if account != data['account'] or jid != data['jid']]
+				if rest_of_family:
+					# reshow the rest of the family
+					brothers = self._add_metacontact_family(rest_of_family, account)
+					for c, acc in brothers:
+						self.draw_completely(c.jid, acc)
 
 		if iters:
 			# Draw all groups of the contact
-- 
GitLab