summaryrefslogtreecommitdiffstats
diff options
context:
space:
mode:
-rw-r--r--eteutils/HTTPUtils.py8
1 files changed, 4 insertions, 4 deletions
diff --git a/eteutils/HTTPUtils.py b/eteutils/HTTPUtils.py
index 0747ec9..9324af7 100644
--- a/eteutils/HTTPUtils.py
+++ b/eteutils/HTTPUtils.py
@@ -1,6 +1,6 @@
import urllib
-from requests.packages import urllib3
-from urlparse import urlparse
+import urllib3
+import urlparse
class HTTPUtils:
"""HTTPUtils is common resource for simple http helper keywords."""
@@ -14,5 +14,5 @@ class HTTPUtils:
urllib3.disable_warnings()
def url_parse(self, url):
- """ Get pieces of the URL """
- return urlparse(url) \ No newline at end of file
+ """ Get pieces of the URL """
+ return urlparse.urlparse(url) \ No newline at end of file