plint

French poetry validator (local mirror of https://gitlab.com/a3nm/plint)
git clone https://a3nm.net/git/plint/
Log | Files | Refs | README

commit 8355392b1ab8c73d37931f17527d29aa38ccffb0
parent 36fb2a51dd66084ddd2d8666de96148cabba960f
Author: Antoine Amarilli <a3nm@a3nm.net>
Date:   Tue, 20 Mar 2012 01:27:19 +0100

forgot ë

Diffstat:
vowels.py | 2+-
1 file changed, 1 insertion(+), 1 deletion(-)

diff --git a/vowels.py b/vowels.py @@ -7,7 +7,7 @@ from common import strip_accents def contains_trema(chunk): """Test if a string contains a word with a trema""" - for x in ['ä', 'ï', 'ö', 'ü', 'ÿ']: + for x in ['ä', 'ë', 'ï', 'ö', 'ü', 'ÿ']: if x in chunk: return True return False