Browse Source

update Msg & MsgProto str formatting

pull/169/head
Rossen Georgiev 7 years ago
parent
commit
f6ef17303f
  1. 29
      steam/core/msg/__init__.py

29
steam/core/msg/__init__.py

@ -119,17 +119,12 @@ class Msg(object):
rows = ["Msg"] rows = ["Msg"]
header = str(self.header) header = str(self.header)
if header: rows.append("-------------- header --")
rows.append("-------------- header --") rows.append(header if header else "(empty)")
rows.append(header)
body = str(self.body) body = str(self.body)
if body: rows.append("---------------- body --")
rows.append("---------------- body --") rows.append(body if body else "(empty)")
rows.append(body)
if len(rows) == 1:
rows[0] += " (empty)"
return '\n'.join(rows) return '\n'.join(rows)
@ -190,21 +185,15 @@ class MsgProto(object):
return "<MsgProto %s>" % repr(self.msg) return "<MsgProto %s>" % repr(self.msg)
def __str__(self): def __str__(self):
rows = ["MsgProto"] rows = ["MsgProto %s" % repr(self.msg)]
header = str(self.header).rstrip() header = str(self.header).rstrip()
if header: rows.append("-------------- header --")
rows.append("-------------- header --") rows.append(header if header else "(empty)")
rows.append(header)
body = str(self.body).rstrip() body = str(self.body).rstrip()
if body: rows.append("---------------- body --")
rows.append("---------------- body --") rows.append(body if body else "(empty)")
rows.append(body)
if len(rows) == 1:
rows[0] += " (empty)"
return '\n'.join(rows) return '\n'.join(rows)

Loading…
Cancel
Save