mirror of
https://github.com/adulau/crl-monitor.git
synced 2024-11-21 17:47:09 +00:00
Fix python3 compat
This commit is contained in:
parent
5082038a95
commit
1a2e1f358c
2 changed files with 5 additions and 2 deletions
|
@ -3,7 +3,10 @@
|
|||
|
||||
import requests
|
||||
import socket
|
||||
from urlparse import urljoin
|
||||
try:
|
||||
from urllib.parse import urljoin
|
||||
except ImportError:
|
||||
from urlparse import urljoin
|
||||
import dateutil.parser
|
||||
|
||||
|
||||
|
|
|
@ -4,7 +4,7 @@ from setuptools import setup
|
|||
|
||||
setup(
|
||||
name='pypssl',
|
||||
version='2.0',
|
||||
version='2.1',
|
||||
author='Raphaël Vinot',
|
||||
author_email='raphael.vinot@circl.lu',
|
||||
maintainer='Raphaël Vinot',
|
||||
|
|
Loading…
Reference in a new issue