--dvsni-port -> --tls-sni-01-port

This commit is contained in:
Jakub Warmuz
2015-11-07 18:24:17 +00:00
parent 2266baf775
commit 5e8ed2bbd2
15 changed files with 29 additions and 26 deletions
+3 -3
View File
@@ -37,10 +37,10 @@ class NamespaceConfig(object):
def __init__(self, namespace):
self.namespace = namespace
if self.http01_port == self.dvsni_port:
if self.http01_port == self.tls_sni_01_port:
raise errors.Error(
"Trying to run http-01 and DVSNI "
"on the same port ({0})".format(self.dvsni_port))
"Trying to run http-01 and tls-sni-01 "
"on the same port ({0})".format(self.tls_sni_01_port))
def __getattr__(self, name):
return getattr(self.namespace, name)