Skip to content

Commit

Permalink
fix class name foaf:Person
Browse files Browse the repository at this point in the history
  • Loading branch information
bertvannuffelen authored Mar 19, 2019
1 parent 5f03922 commit b47dcd0
Showing 1 changed file with 1 addition and 1 deletion.
2 changes: 1 addition & 1 deletion specgen/entry.py
Original file line number Diff line number Diff line change
Expand Up @@ -314,7 +314,7 @@ def add_contributors_to_rdf(csv, column, voc):
else:
continue
g.add((ontology, contributor_type, cnode))
g.add((cnode, RDF.type, FOAF.person))
g.add((cnode, RDF.type, FOAF.Person))
g.add((cnode, FOAF.firstName, Literal(contributor['first_name'])))
g.add((cnode, FOAF.lastName, Literal(contributor['last_name'])))
g.add((cnode, affiliationPredicate, affiliation))
Expand Down

0 comments on commit b47dcd0

Please sign in to comment.