Skip to content

Commit

Permalink
Merge pull request #195 from bretelerjmw/fix-typo-rdfs-label
Browse files Browse the repository at this point in the history
Fix typo to rdfs:label
  • Loading branch information
nicholascar authored Jul 26, 2024
2 parents 324abbe + 485d3eb commit 0a30c60
Show file tree
Hide file tree
Showing 2 changed files with 2 additions and 2 deletions.
2 changes: 1 addition & 1 deletion pylode/profiles/ontpub.py
Original file line number Diff line number Diff line change
Expand Up @@ -129,7 +129,7 @@ def __init__(self, ontology: Union[Graph, Path, str], sort_subjects: bool = Fals
if t is None:
raise PylodeError(
"You MUST supply a title property "
"(dcterms:title, rdf:label or sdo:name) for your ontology"
"(dcterms:title, rdfs:label or sdo:name) for your ontology"
)
self.doc = dominate.document(title=t)

Expand Down
2 changes: 1 addition & 1 deletion pylode/profiles/vocpub.py
Original file line number Diff line number Diff line change
Expand Up @@ -132,7 +132,7 @@ def __init__(self, ontology: Union[Graph, Path, str], sort_subjects: bool = Fals
if t is None:
raise PylodeError(
"You MUST supply a title property "
"(dcterms:title, rdf:label or sdo:name) for your ontology"
"(dcterms:title, rdfs:label or sdo:name) for your ontology"
)
self.doc = dominate.document(title=t)

Expand Down

0 comments on commit 0a30c60

Please sign in to comment.