plint

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

commit e76ce8d42cc2e6031b17dfb7b8768b60fa700289
parent 5400e99e1a18bba2cd5d7a97442339e0a60cc843
Author: Antoine Amarilli <a3nm@a3nm.net>
Date:   Tue, 13 Mar 2012 15:53:19 +0100

fix bug in rhyme

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

diff --git a/rhyme.py b/rhyme.py @@ -9,7 +9,7 @@ import functools # number of possible rhymes to consider NBEST = 5 # phonetic vowels -vowel = list("Eeaio592O#@y%u") +vowel = list("Eeaio592O#@y%u()$") class Constraint: def __init__(self, phon, eye, aphon):