drime

French rhyme dictionary with web and CLI interface
git clone https://a3nm.net/git/drime/
Log | Files | Refs | README

commit 6cb15b721d1db8d6da3b7fe5c0b3b7e25b6e88b8
parent cdce4068c78da593e371a5df737f0df1bceb22db
Author: Antoine Amarilli <a3nm@a3nm.net>
Date:   Fri, 19 Aug 2011 10:00:23 -0400

don't remove dupes

Diffstat:
manage.py | 3++-
1 file changed, 2 insertions(+), 1 deletion(-)

diff --git a/manage.py b/manage.py @@ -169,7 +169,8 @@ while True: w = Word(word, phon, base, freq, nsyl, mult) key = (word, phon) if key in seen: - continue + #continue + pass else: seen.add(key) phon_key = (phon, w.feminine)