mirror of
https://github.com/certbot/certbot.git
synced 2026-01-21 19:01:07 +03:00
fix #765
This commit is contained in:
@@ -268,7 +268,8 @@ class RenewableCert(object): # pylint: disable=too-many-instance-attributes
|
||||
if kind not in ALL_FOUR:
|
||||
raise errors.CertStorageError("unknown kind of item")
|
||||
where = os.path.dirname(self.current_target(kind))
|
||||
return os.path.join(where, "{0}{1}.pem".format(kind, version))
|
||||
return os.path.abspath(
|
||||
os.path.join(where, "{0}{1}.pem".format(kind, version)))
|
||||
|
||||
def available_versions(self, kind):
|
||||
"""Which alternative versions of the specified kind of item exist?
|
||||
|
||||
Reference in New Issue
Block a user