Browse Source

better msg recipienzts printing in multipEp.py

PYADPT-55
Edouard Tisserant 8 years ago
parent
commit
29735d3c93
  1. 4
      test/multipEp.py

4
test/multipEp.py

@ -192,8 +192,8 @@ def printheader(blah=None):
"-" * (39 - len(blah) + int(len(blah)/2))) "-" * (39 - len(blah) + int(len(blah)/2)))
def printmsg(msg): def printmsg(msg):
printi("from :", msg.from_) printi("from :", repr(msg.from_))
printi("to :", msg.to) printi("to :", repr(msg.to))
printi("recv :", msg.recv) printi("recv :", msg.recv)
printi("sent :", msg.sent) printi("sent :", msg.sent)
printi("short :", msg.shortmsg) printi("short :", msg.shortmsg)

Loading…
Cancel
Save