2
0
mirror of https://github.com/ComradCollective/Comrad synced 2024-11-03 23:15:33 +00:00
This commit is contained in:
quadrismegistus 2020-09-15 14:54:00 +01:00
parent 0a051ac737
commit 6cdea75d94

View File

@ -41,6 +41,8 @@ class Message(Logger):
if is_valid_msg_d(self.msg):
import textwrap
msg = textwrap.indent(repr(Message(self.msg)),' '*10)
elif 'txt' in self.msg:
msg=self.msg.get('txt')
else:
msg=dict_format(self.msg,tab=6)
elif type(self.msg)==bytes: