Use different method to compute ServicePort.repr

Workaround for https://bugs.python.org/issue24931

Signed-off-by: Joffrey F <joffrey@docker.com>
This commit is contained in:
Joffrey F 2017-05-05 16:40:45 -07:00 committed by Joffrey F
parent 570cf951ac
commit a5837ba358
1 changed files with 1 additions and 1 deletions

View File

@ -306,7 +306,7 @@ class ServicePort(namedtuple('_ServicePort', 'target published protocol mode ext
def repr(self):
return dict(
[(k, v) for k, v in self._asdict().items() if v is not None]
[(k, v) for k, v in zip(self._fields, self) if v is not None]
)
def legacy_repr(self):