Skip to content

Commit

Permalink
Import HTTPError from the right place
Browse files Browse the repository at this point in the history
  • Loading branch information
alexdutton committed May 5, 2017
1 parent ecbf20b commit f1a1e19
Show file tree
Hide file tree
Showing 2 changed files with 3 additions and 2 deletions.
3 changes: 2 additions & 1 deletion sharepoint/lists/__init__.py
Expand Up @@ -3,7 +3,8 @@

from six import text_type
from six.moves.urllib.parse import quote
from six.moves.urllib.request import HTTPError, Request
from six.moves.urllib.request import Request
from six.moves.urllib.error import HTTPError

from lxml import etree
from lxml.builder import E
Expand Down
2 changes: 1 addition & 1 deletion sharepoint/users.py
Expand Up @@ -2,7 +2,7 @@
from lxml.builder import E

from six import text_type
from six.moves.urllib.request import HTTPError
from six.moves.urllib.error import HTTPError
from six.moves.urllib.parse import urlparse, parse_qs

from .xml import namespaces, OUT, SP, SEARCH, SQ
Expand Down

0 comments on commit f1a1e19

Please sign in to comment.