Skip to content

Commit

Permalink
Merge pull request apache#358 from jlowin/py3-urlparse
Browse files Browse the repository at this point in the history
Py3: urlparse doesn't exist
  • Loading branch information
mistercrunch committed Sep 4, 2015
2 parents 8ab666c + 697c8fa commit 4af01d9
Showing 1 changed file with 3 additions and 1 deletion.
4 changes: 3 additions & 1 deletion airflow/models.py
Original file line number Diff line number Diff line change
@@ -1,4 +1,6 @@
from __future__ import print_function
from future.standard_library import install_aliases
install_aliases()
from builtins import str
from past.builtins import basestring
from builtins import object, bytes
Expand All @@ -16,7 +18,7 @@
import signal
import socket
import sys
from urlparse import urlparse
from urllib.parse import urlparse

from sqlalchemy import (
Column, Integer, String, DateTime, Text, Boolean, ForeignKey, PickleType,
Expand Down

0 comments on commit 4af01d9

Please sign in to comment.