From f54468923c7641a8aa4383e992dac40e595073f5 Mon Sep 17 00:00:00 2001 From: Kevin Lo Date: Fri, 19 Jan 2001 16:47:28 +0000 Subject: Fix formatting problem PR: 24457 Submitted by: MAINTAINER --- textproc/py-martel/files/patch-Generate.py | 18 ++++++++++++++++++ 1 file changed, 18 insertions(+) create mode 100644 textproc/py-martel/files/patch-Generate.py (limited to 'textproc/py-martel/files/patch-Generate.py') diff --git a/textproc/py-martel/files/patch-Generate.py b/textproc/py-martel/files/patch-Generate.py new file mode 100644 index 000000000000..036c7508e416 --- /dev/null +++ b/textproc/py-martel/files/patch-Generate.py @@ -0,0 +1,18 @@ +From: "Andrew Dalke" +To: +Date: Tue, 16 Jan 2001 18:57:23 -0700 + +There's a small bug with the debug_level = 2 option +in Martel. When the debug position is within the +first 8 characters it does not show the match text. + +--- Generate.py.orig Fri Jan 19 14:50:01 2001 ++++ Generate.py Fri Jan 19 14:50:06 2001 +@@ -460,7 +460,7 @@ + s = s[:17] + " ... " + s[-17:] + self.msg = s + def __call__(self, text, x, end): +- print "Match %s (x=%d): %s" % (repr(text[x-8:x+8]), x, ++ print "Match %s (x=%d): %s" % (repr(text[max(0, x-8):x+8]), x, + repr(self.msg)) + return x -- cgit v1.2.3