From 39a5f87700efa4ea3ca3bf4fade65b570724607a Mon Sep 17 00:00:00 2001 From: =?UTF-8?q?Gr=C3=A9gory=20Wisniewski?= <gregory@nexedi.com> Date: Fri, 7 May 2010 15:37:00 +0000 Subject: [PATCH] Revert "Display full connection informations in node representation." git-svn-id: https://svn.erp5.org/repos/neo/trunk@2095 71dcc9de-d417-0410-9af5-da40c76e7ee4 --- neo/connection.py | 4 ++-- 1 file changed, 2 insertions(+), 2 deletions(-) diff --git a/neo/connection.py b/neo/connection.py index 333ccc67..37ab3a6b 100644 --- a/neo/connection.py +++ b/neo/connection.py @@ -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), ) -- 2.30.9