1
0
mirror of https://github.com/certbot/certbot.git synced 2026-01-23 07:20:55 +03:00

Sort imports lexicographically

This commit is contained in:
Seth Schoen
2015-02-09 10:03:23 -08:00
parent 275d3e3da5
commit 52ae977fb7

View File

@@ -6,20 +6,20 @@ but instead creates its own ephemeral TCP listener on the specified port
in order to respond to incoming DVSNI challenges from the certificate
authority."""
import zope.interface
import zope.component
from letsencrypt.client import CONFIG
from letsencrypt.client import interfaces
from letsencrypt.client.challenge_util import DvsniChall
from letsencrypt.client.challenge_util import dvsni_gen_cert
import os
import sys
import signal
import time
import socket
from letsencrypt.client import CONFIG
from letsencrypt.client import interfaces
import Crypto.Random
import OpenSSL.crypto
import OpenSSL.SSL
import os
import signal
import socket
import sys
import time
import zope.component
import zope.interface
class StandaloneAuthenticator(object):