diff --git a/ankiqt/ui/main.py b/ankiqt/ui/main.py
index 2127c34bc..c58ff0707 100755
--- a/ankiqt/ui/main.py
+++ b/ankiqt/ui/main.py
@@ -461,7 +461,6 @@ Please do not file a bug report with Anki.
""")
def handleLeech(self):
self.deck.refresh()
tags = self.currentCard.fact.tags
- wasLeech = "Leech" in tags
tags = addTags("Leech", tags)
self.currentCard.fact.tags = canonifyTags(tags)
self.currentCard.fact.setModified(textChanged=True)
@@ -470,7 +469,7 @@ Please do not file a bug report with Anki.
""")
%s... is a leech.""")
% stripHTML(stripSounds(self.currentCard.question)).\
replace("\n", " ")[0:30])
- if self.deck.getBool('suspendLeeches') and not wasLeech:
+ if self.deck.getBool('suspendLeeches'):
self.deck.suspendCards([self.currentCard.id])
txt += _(" It has been suspended.")
self.deck.refresh()