Kaxil Naik created AIRFLOW-4386:
-----------------------------------
Summary: Remove urlparse and replace it with urllib.parse
Key: AIRFLOW-4386
URL: https://issues.apache.org/jira/browse/AIRFLOW-4386
Project: Apache Airflow
Issue Type: Sub-task
Reporter: Kaxil Naik
Assignee: Kaxil Naik
Fix For: 2.0.0
Remove `from urlparse import urlparse` from the following code:
{code:python}
try:
from urllib.parse import urlparse
# Python 2
except ImportError:
from urlparse import urlparse
{code}
--
This message was sent by Atlassian JIRA
(v7.6.3#76005)