From 656d4c2cd964fa689dfa8b642818bc58a05b2615 Mon Sep 17 00:00:00 2001 From: Diane Trout Date: Wed, 12 Feb 2014 17:28:50 -0800 Subject: [PATCH] Just use the python 2 url parsers instead of trying to pull it out of requests --- htsworkflow/submission/encoded.py | 3 +-- 1 file changed, 1 insertion(+), 2 deletions(-) diff --git a/htsworkflow/submission/encoded.py b/htsworkflow/submission/encoded.py index 1228d38..e935dbc 100644 --- a/htsworkflow/submission/encoded.py +++ b/htsworkflow/submission/encoded.py @@ -10,9 +10,8 @@ import logging import json import jsonschema import requests -from requests.utils import urlparse, urlunparse import types -from urlparse import urljoin +from urlparse import urljoin, urlparse, urlunparse LOGGER = logging.getLogger(__name__) -- 2.30.2