How about a less confusing repr?

„WTF, why is this a string?”
This commit is contained in:
Nils Martin Klünder 2015-02-21 19:17:49 +01:00
parent 45d920850e
commit 71c2417b9d

View file

@ -24,7 +24,7 @@ class Node():
self.interfaces[mac] = Interface()
def __repr__(self):
return self.macs.__repr__()
return '<Node %s>' % self.macs.__repr__()
class Interface():
def __init__(self):