mirror of
https://github.com/YunoHost/yunohost.git
synced 2024-09-03 20:06:10 +02:00
[mod] os.path.join
This commit is contained in:
parent
a1b42e65f8
commit
bd41f0d4a2
1 changed files with 1 additions and 1 deletions
|
@ -487,7 +487,7 @@ def _prepare_certificate_signing_request(domain, key_file, output_folder):
|
|||
|
||||
|
||||
def _get_status(domain):
|
||||
cert_file = cert_folder + "/" + domain + "/crt.pem"
|
||||
cert_file = os.path.join(cert_folder, domain, "crt.pem")
|
||||
|
||||
if not os.path.isfile(cert_file):
|
||||
return {}
|
||||
|
|
Loading…
Add table
Reference in a new issue