diff options
author | David Robillard <d@drobilla.net> | 2012-09-02 23:02:14 +0000 |
---|---|---|
committer | David Robillard <d@drobilla.net> | 2012-09-02 23:02:14 +0000 |
commit | 838005bbfc51a1cfb042b2cbc11d5cc2a88683a2 (patch) | |
tree | ab01307dbee2fce1f03848b1663c78ec9d58f972 /lv2specgen | |
parent | 1c06e3e0e46e2e5ac621001b96a2b439aafd2800 (diff) | |
download | lv2-838005bbfc51a1cfb042b2cbc11d5cc2a88683a2.tar.xz |
Fix link regexp.
Diffstat (limited to 'lv2specgen')
-rwxr-xr-x | lv2specgen/lv2specgen.py | 2 |
1 files changed, 1 insertions, 1 deletions
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) |