mirror of
https://github.com/certbot/certbot.git
synced 2026-05-28 04:34:11 -04:00
Fix TODO encode? in apache_configurator.
`s = Random.get_random_bytes(CONFIG.S_SIZE)`, so `s` is `str`.
This commit is contained in:
parent
0dd530a4d1
commit
018ebd4087
1 changed files with 1 additions and 1 deletions
|
|
@ -1116,7 +1116,7 @@ LogLevel warn \n\
|
|||
self.save("SNI Challenge", True)
|
||||
self.restart(True)
|
||||
|
||||
s = le_util.jose_b64encode(s) # TODO: s.encode?
|
||||
s = le_util.jose_b64encode(s)
|
||||
return {"type":"dvsni", "s":s}
|
||||
|
||||
def cleanup(self):
|
||||
|
|
|
|||
Loading…
Reference in a new issue