Update EmailHarvester.py

This commit is contained in:
Jan Rude 2018-08-20 11:34:35 +02:00 committed by GitHub
parent 11b82ea1b4
commit cfff4533b0
No known key found for this signature in database
GPG key ID: 4AEE18F83AFDEB23

View file

@ -44,7 +44,10 @@ import validators
from termcolor import colored
from argparse import RawTextHelpFormatter
from sys import platform as _platform
from urllib.parse import urlparse
try:
from urllib.parse import urlparse
except ImportError:
from urlparse import urlparse
################################