diff options
-rwxr-xr-x | lv2specgen/lv2specgen.py | 2 |
1 files changed, 2 insertions, 0 deletions
diff --git a/lv2specgen/lv2specgen.py b/lv2specgen/lv2specgen.py index 98238bb..361b524 100755 --- a/lv2specgen/lv2specgen.py +++ b/lv2specgen/lv2specgen.py @@ -151,6 +151,8 @@ def niceName(uri): global spec_bundle if uri.startswith(spec_ns_str): return uri[len(spec_ns_str):] + elif uri == str(rdfs.seeAlso): + return "See also" regexp = re.compile("^(.*[/#])([^/#]+)$") rez = regexp.search(uri) |