fix: type confusion in previous bugfix
This commit is contained in:
parent
b3e66b91c3
commit
d9fa1733a8
1 changed files with 1 additions and 1 deletions
|
@ -99,7 +99,7 @@ def write_public_key(domain, user, key, revoked):
|
|||
danefile = os.path.join(Config.working_directory, domain, 'dane', dane)
|
||||
joined = bytes(key) + b''.join([bytes(k) for k in revoked])
|
||||
_locked_write(keyfile, joined, binary=True)
|
||||
_locked_write(danefile, key, binary=True)
|
||||
_locked_write(danefile, bytes(key), binary=True)
|
||||
dane_notify(domain)
|
||||
|
||||
|
||||
|
|
Loading…
Reference in a new issue