Browse Source

ssl fix cert_destination

master
Andrea Cimbalo 7 years ago
parent
commit
116c158e3c
1 changed files with 1 additions and 1 deletions
  1. +1
    -1
      models/ssl.py

+ 1
- 1
models/ssl.py View File

@ -74,7 +74,7 @@ class SSLAuthority(Authority):
"""
pub_key_path = request.destination
cert_path = request.destination + '-cert.pub'
cert_path = request.cert_destination
with open(pub_key_path, 'w') as stream:
stream.write(request.key_data)


Loading…
Cancel
Save