1
0
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:
Jakub Warmuz
2014-11-24 13:32:55 +01:00
parent 0dd530a4d1
commit 018ebd4087

View File

@@ -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):