diff options
Diffstat (limited to 'lv2specgen/lv2specgen.py')
| -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)  |