Merge pull request #766 from letsencrypt/fix_765

abspath storage.version (#765)
This commit is contained in:
James Kasten
2015-09-11 03:13:35 -04:00
+1 -1
View File
@@ -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.