mirror of
https://github.com/certbot/certbot.git
synced 2026-08-01 18:56:55 +02:00
logger needs to only print strings
This commit is contained in:
@@ -96,7 +96,7 @@ class NcursesLogger(Logger):
|
|||||||
self.d.infobox(self.content, self.height+2, self.width+4)
|
self.d.infobox(self.content, self.height+2, self.width+4)
|
||||||
|
|
||||||
def log(self, level, data):
|
def log(self, level, data):
|
||||||
self.add(data + "\n")
|
self.add(str(data) + "\n")
|
||||||
|
|
||||||
log_instance = None
|
log_instance = None
|
||||||
|
|
||||||
|
|||||||
Reference in New Issue
Block a user