mirror of
https://github.com/certbot/certbot.git
synced 2026-01-26 07:41:33 +03:00
Fix TODO encode? in apache_configurator.
`s = Random.get_random_bytes(CONFIG.S_SIZE)`, so `s` is `str`.
This commit is contained in:
@@ -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):
|
||||
|
||||
Reference in New Issue
Block a user