mirror of
https://github.com/certbot/certbot.git
synced 2026-06-08 08:12:15 -04:00
Merge pull request #766 from letsencrypt/fix_765
abspath storage.version (#765)
This commit is contained in:
commit
00a5214a29
1 changed files with 1 additions and 1 deletions
|
|
@ -223,7 +223,7 @@ class RenewableCert(object): # pylint: disable=too-many-instance-attributes
|
|||
target = os.readlink(link)
|
||||
if not os.path.isabs(target):
|
||||
target = os.path.join(os.path.dirname(link), target)
|
||||
return target
|
||||
return os.path.abspath(target)
|
||||
|
||||
def current_version(self, kind):
|
||||
"""Returns numerical version of the specified item.
|
||||
|
|
|
|||
Loading…
Reference in a new issue