From 838005bbfc51a1cfb042b2cbc11d5cc2a88683a2 Mon Sep 17 00:00:00 2001 From: David Robillard Date: Sun, 2 Sep 2012 23:02:14 +0000 Subject: Fix link regexp. --- lv2specgen/lv2specgen.py | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) (limited to 'lv2specgen') diff --git a/lv2specgen/lv2specgen.py b/lv2specgen/lv2specgen.py index 778eb84..37b2cef 100755 --- a/lv2specgen/lv2specgen.py +++ b/lv2specgen/lv2specgen.py @@ -234,7 +234,7 @@ def linkify(string): rgx = re.compile('([^a-zA-Z0-9_:])(' + \ '|'.join(map(re.escape, linkmap)) + \ - ')([^a-aA-Z0-9_:])') + ')([^a-zA-Z0-9_:])') def translateCodeLink(match): return match.group(1) + linkmap[match.group(2)] + match.group(3) -- cgit v1.2.1