diff options
author | Gunnar Aastrand Grimnes <gromgull@gmail.com> | 2017-01-30 21:50:05 +0100 |
---|---|---|
committer | Gunnar Aastrand Grimnes <gromgull@gmail.com> | 2017-01-30 21:50:05 +0100 |
commit | bfcde8482401393ea183242f0ddca5bff73afc2c (patch) | |
tree | a638c67c850c2ba952cf419f448034a5e8b18196 /rdflib/plugins/parsers/rdfxml.py | |
parent | ff4616e6e58e83fae518770f0af2e6ca4922ac42 (diff) | |
download | rdflib-bfcde8482401393ea183242f0ddca5bff73afc2c.tar.gz |
removed most of the six import from py3compat
now six is used throughout.
Diffstat (limited to 'rdflib/plugins/parsers/rdfxml.py')
-rw-r--r-- | rdflib/plugins/parsers/rdfxml.py | 2 |
1 files changed, 1 insertions, 1 deletions
diff --git a/rdflib/plugins/parsers/rdfxml.py b/rdflib/plugins/parsers/rdfxml.py index 4a342018..6e6d2df2 100644 --- a/rdflib/plugins/parsers/rdfxml.py +++ b/rdflib/plugins/parsers/rdfxml.py @@ -7,7 +7,7 @@ from xml.sax.handler import ErrorHandler from xml.sax.saxutils import handler, quoteattr, escape -from rdflib.py3compat import urldefrag, urljoin +from six.moves.urllib.parse import urldefrag, urljoin from rdflib.namespace import RDF, is_ncname from rdflib.term import URIRef from rdflib.term import BNode |