Fix python3 compat

This commit is contained in:
Raphaël Vinot 2015-08-27 14:34:21 +02:00
parent 5082038a95
commit 1a2e1f358c
2 changed files with 5 additions and 2 deletions

View file

@ -3,7 +3,10 @@
import requests import requests
import socket import socket
from urlparse import urljoin try:
from urllib.parse import urljoin
except ImportError:
from urlparse import urljoin
import dateutil.parser import dateutil.parser

View file

@ -4,7 +4,7 @@ from setuptools import setup
setup( setup(
name='pypssl', name='pypssl',
version='2.0', version='2.1',
author='Raphaël Vinot', author='Raphaël Vinot',
author_email='raphael.vinot@circl.lu', author_email='raphael.vinot@circl.lu',
maintainer='Raphaël Vinot', maintainer='Raphaël Vinot',