1
0
mirror of https://github.com/laurivosandi/certidude synced 2024-09-27 20:48:11 +00:00

Fix dependency on subprocess

This commit is contained in:
Lauri Võsandi 2017-04-20 05:23:09 +00:00
parent 5e812f5194
commit a5b880c020
2 changed files with 1 additions and 1 deletions

View File

@ -2,6 +2,7 @@
import os import os
import click import click
import ipaddress import ipaddress
import subprocess
def ip_network(j): def ip_network(j):
return ipaddress.ip_network(unicode(j)) return ipaddress.ip_network(unicode(j))

View File

@ -3,7 +3,6 @@ import ipaddress
import json import json
import logging import logging
import os import os
import subprocess
import types import types
from datetime import date, time, datetime, timedelta from datetime import date, time, datetime, timedelta
from urlparse import urlparse from urlparse import urlparse