Commit 39a5f877 authored by Grégory Wisniewski's avatar Grégory Wisniewski

Revert "Display full connection informations in node representation."

git-svn-id: https://svn.erp5.org/repos/neo/trunk@2095 71dcc9de-d417-0410-9af5-da40c76e7ee4
parent 12180c04
......@@ -281,11 +281,11 @@ class BaseConnection(object):
def __repr__(self):
address = self.addr and '%s:%d' % self.addr or '?'
return '<%s(uuid=%s, address=%s, connection=%s) at %x>' % (
return '<%s(uuid=%s, address=%s, closed=%s) at %x>' % (
self.__class__.__name__,
dump(self.getUUID()),
address,
self._connection,
self.isClosed(),
id(self),
)
......
Markdown is supported
0%
or
You are about to add 0 people to the discussion. Proceed with caution.
Finish editing this message first!
Please register or to comment