Skip to content

Commit

Permalink
Merge pull request #13 from RDFLib/get-literal-bug-dbs
Browse files Browse the repository at this point in the history
Took care of the bug originally reported by @dbs in the core RDFLib Repo
  • Loading branch information
iherman committed Jan 28, 2016
2 parents 81d6452 + b740952 commit f1030e7
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 f1030e7

Please sign in to comment.