plint

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

commit 595e2f4bad7bbed5cce5318487032d78fd6ed1b4
parent 85e83d85770695b83ae62e2056395df964e9c0b5
Author: Antoine Amarilli <a3nm@a3nm.net>
Date:   Sun, 10 Jun 2012 20:19:43 +0200

higher limits

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

diff --git a/plint_web.py b/plint_web.py @@ -64,7 +64,7 @@ def about(): lang=get_locale()) def check(poem): - if len(poem) > 4096: + if len(poem) > 8192: return None s = poem.split("\n") for x in range(len(s)):