aboutsummaryrefslogtreecommitdiffstats
path: root/lv2specgen/lv2specgen.py
diff options
context:
space:
mode:
authorDavid Robillard <d@drobilla.net>2012-09-02 23:02:14 +0000
committerDavid Robillard <d@drobilla.net>2012-09-02 23:02:14 +0000
commit838005bbfc51a1cfb042b2cbc11d5cc2a88683a2 (patch)
treeab01307dbee2fce1f03848b1663c78ec9d58f972 /lv2specgen/lv2specgen.py
parent1c06e3e0e46e2e5ac621001b96a2b439aafd2800 (diff)
downloadlv2-838005bbfc51a1cfb042b2cbc11d5cc2a88683a2.tar.xz
Fix link regexp.
Diffstat (limited to 'lv2specgen/lv2specgen.py')
-rwxr-xr-xlv2specgen/lv2specgen.py2
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)