diff --git a/nidm/experiment/Utils.py b/nidm/experiment/Utils.py index c6bc125f..eae6482f 100644 --- a/nidm/experiment/Utils.py +++ b/nidm/experiment/Utils.py @@ -806,8 +806,8 @@ def fuzzy_match_concepts_from_nidmterms_jsonld(json_struct,query_string): match_scores[entry['label']] = {} match_scores[entry['label']]['score'] = fuzz.token_sort_ratio(query_string, entry['label']) match_scores[entry['label']]['label'] = entry['label'] - if "http://schema.org/url" in entry.keys(): - match_scores[entry['label']]['url'] = entry["http://schema.org/url"] + if "schema:url" in entry.keys(): + match_scores[entry['label']]['url'] = entry["schema:url"] else: match_scores[entry['label']]['url'] = "" if 'description' in entry.keys(): diff --git a/nidm/version.py b/nidm/version.py index 0f89f5ca..7dfaedf4 100644 --- a/nidm/version.py +++ b/nidm/version.py @@ -4,7 +4,7 @@ # Format expected by setup.py and doc/source/conf.py: string of form "X.Y.Z" _version_major = 3 _version_minor = 8 -_version_micro = '4' # use '' for first of series, number for 1 and above +_version_micro = '5' # use '' for first of series, number for 1 and above _version_extra = '' # _version_extra = '' # Uncomment this for full releases