Skip to content

Commit

Permalink
Took care of the bug originally reported by @dbs in the core RDFLib Repo
Browse files Browse the repository at this point in the history
  • Loading branch information
iherman committed Jan 28, 2016
1 parent 81d6452 commit b740952
Showing 1 changed file with 1 addition and 1 deletion.
2 changes: 1 addition & 1 deletion pyRdfa/host/html5.py
Original file line number Diff line number Diff line change
Expand Up @@ -172,7 +172,7 @@ def _get_literal(Pnode):
if node.nodeType == node.TEXT_NODE:
rc = rc + node.data
elif node.nodeType == node.ELEMENT_NODE :
rc = rc + self._get_literal(node)
rc = rc + _get_literal(node)
if state.options.space_preserve :
return rc
else :
Expand Down

0 comments on commit b740952

Please sign in to comment.