Just use the python 2 url parsers instead of trying to pull it out of requests
authorDiane Trout <diane@ghic.org>
Thu, 13 Feb 2014 01:28:50 +0000 (17:28 -0800)
committerDiane Trout <diane@ghic.org>
Tue, 10 Jun 2014 23:12:10 +0000 (16:12 -0700)
htsworkflow/submission/encoded.py

index 1228d387f015a39a9da12c8ad5ca296d218c68de..e935dbccd829be1b9eb750fbebef66bbd58c6c23 100644 (file)
@@ -10,9 +10,8 @@ import logging
 import json
 import jsonschema
 import requests
 import json
 import jsonschema
 import requests
-from requests.utils import urlparse, urlunparse
 import types
 import types
-from urlparse import urljoin
+from urlparse import urljoin, urlparse, urlunparse
 
 LOGGER = logging.getLogger(__name__)
 
 
 LOGGER = logging.getLogger(__name__)