get_cert_file -> get_cert_path.

This commit is contained in:
Jakub Warmuz
2015-07-09 10:51:21 +00:00
parent 1bc9e7cb64
commit 3e2d1c8abc
4 changed files with 5 additions and 5 deletions
+2 -2
View File
@@ -145,7 +145,7 @@ class Dvsni(object):
if idx is not None:
self.indices.append(idx)
def get_cert_file(self, achall):
def get_cert_path(self, achall):
"""Returns standardized name for challenge certificate.
:param achall: Annotated DVSNI challenge.
@@ -166,7 +166,7 @@ class Dvsni(object):
def _setup_challenge_cert(self, achall, s=None):
# pylint: disable=invalid-name
"""Generate and write out challenge certificate."""
cert_path = self.get_cert_file(achall)
cert_path = self.get_cert_path(achall)
# Register the path before you write out the file
self.configurator.reverter.register_file_creation(True, cert_path)