diff --git a/neo/node.py b/neo/node.py index 773fd269ee3268300483ad45efdff06b1489abbb..45183584aa7933526dc5dc3c5f36ddccda28f608 100644 --- a/neo/node.py +++ b/neo/node.py @@ -116,11 +116,12 @@ class Node(object): return self._connection is not None and self._uuid is not None def __repr__(self): - return '<%s(uuid=%s, address=%s, state=%s)>' % ( + return '<%s(uuid=%s, address=%s, state=%s) at %x>' % ( self.__class__.__name__, dump(self._uuid), self._address, self._state, + id(self), ) def isMaster(self):