From 29735d3c9367d0f20370191530cdb412e391729e Mon Sep 17 00:00:00 2001 From: Edouard Tisserant Date: Tue, 20 Jun 2017 21:36:02 +0200 Subject: [PATCH] better msg recipienzts printing in multipEp.py --- test/multipEp.py | 4 ++-- 1 file changed, 2 insertions(+), 2 deletions(-) diff --git a/test/multipEp.py b/test/multipEp.py index 867a061..d288f97 100644 --- a/test/multipEp.py +++ b/test/multipEp.py @@ -192,8 +192,8 @@ def printheader(blah=None): "-" * (39 - len(blah) + int(len(blah)/2))) def printmsg(msg): - printi("from :", msg.from_) - printi("to :", msg.to) + printi("from :", repr(msg.from_)) + printi("to :", repr(msg.to)) printi("recv :", msg.recv) printi("sent :", msg.sent) printi("short :", msg.shortmsg)