From b58870bba04ffabc1a7469e6fd80e4bc60ebc41c Mon Sep 17 00:00:00 2001 From: Vincent Le Gallic Date: Mon, 14 Apr 2014 09:14:28 +0200 Subject: [PATCH] =?utf8?q?Comparaison=20de=20quotes=20ind=C3=A9pendante=20?= =?utf8?q?de=20la=20casse.?= MIME-Version: 1.0 Content-Type: text/plain; charset=utf8 Content-Transfer-Encoding: 8bit --- quotes.py | 4 ++-- 1 file changed, 2 insertions(+), 2 deletions(-) diff --git a/quotes.py b/quotes.py index 08cac11..bd05913 100644 --- a/quotes.py +++ b/quotes.py @@ -47,8 +47,8 @@ class Quote(object): def __eq__(self, otherquote): """ Vérifie si cette phrase n'a pas déjà été dite par la même personne. - Indépendamment de la date. """ - return [self.author, self.content] == [otherquote.author, otherquote.content] + Indépendamment de la date et de la casse. """ + return [self.author.lower(), self.content.lower()] == [otherquote.author.lower(), otherquote.content.lower()] def parse(text, date=None): -- 2.39.2