plint

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

commit e6d9b5c6167f4d7d0ff137f44d4900da08ec7408
parent 317e4c2fee69e3790d932851a964755e86223c7f
Author: Antoine Amarilli <a3nm@a3nm.net>
Date:   Tue, 10 Jul 2012 21:24:15 +0200

cleanup

Diffstat:
plint_irc.py | 4++--
1 file changed, 2 insertions(+), 2 deletions(-)

diff --git a/plint_irc.py b/plint_irc.py @@ -4,7 +4,7 @@ import re import sys import rhyme import metric -import template +from template import Template from pprint import pprint from common import normalize @@ -87,7 +87,7 @@ if len(sys.argv) != 3: f = open(sys.argv[1]) x = f.read() f.close() -template = template.Template(x) +template = Template(x) template.reject_errors = True