fix circles escapeansi being passed bytes

This commit is contained in:
Kevin Froman 2020-04-04 00:58:02 -05:00
parent d47c546620
commit da1940cc8e
1 changed files with 1 additions and 1 deletions

View File

@ -106,7 +106,7 @@ class OnionrFlow:
content = block.getContent()
# Escape new lines, remove trailing whitespace, and escape ansi sequences
content = escapeansi.escape_ANSI(content.replace(
'\n', '\\n').replace('\r', '\\r').strip())
b'\n', b'\\n').replace(b'\r', b'\\r').strip().decode('utf-8'))
logger.info(block.getDate().strftime(
"%m/%d %H:%M") + ' - ' + logger.colors.reset + content, prompt=False, terminal=True)
self.alreadyOutputed.append(b_hash)