aboutsummaryrefslogtreecommitdiffstats
path: root/vicn/resource/icn/route.py
diff options
context:
space:
mode:
authorMarcel Enguehard <mengueha+fdio@cisco.com>2017-07-19 11:26:26 +0200
committerMarcel Enguehard <mengueha+fdio@cisco.com>2017-07-19 11:51:26 +0000
commit3e6678f9c692553e8902da4d6fb1fe6c087db1f4 (patch)
tree580a46ca5de22a044319eabb295ad980d50589ec /vicn/resource/icn/route.py
parent08c4f765cf29dbd6e9a616c542552417eece14fc (diff)
* GUI resource
* MemIf interface for VPP * Better netmodel integration * Draft documentation * New tutorials * Improved monitoring and error handling * Refactored IP addresses and prefixes representation * Improved image mgmt for LXD * Various bugfixes and code refactoring Change-Id: I90da6cf7b5716bc7deb6bf4e24d3f9f01b5a9b0f Signed-off-by: Marcel Enguehard <mengueha+fdio@cisco.com>
Diffstat (limited to 'vicn/resource/icn/route.py')
-rw-r--r--vicn/resource/icn/route.py6
1 files changed, 2 insertions, 4 deletions
diff --git a/vicn/resource/icn/route.py b/vicn/resource/icn/route.py
index 0dc2ed2f..6efd909b 100644
--- a/vicn/resource/icn/route.py
+++ b/vicn/resource/icn/route.py
@@ -25,12 +25,10 @@ from vicn.resource.node import Node
class Route(Resource):
node = Attribute(Node, mandatory = True)
prefix = Attribute(String, mandatory = True)
- face = Attribute(Face, description = "face used to forward interests",
+ face = Attribute(Face, description = "face used to forward interests",
mandatory=True)
cost = Attribute(Integer, default=1)
def __repr__(self):
- return '<Route {} {} on node {}>'.format(self.prefix, self.face,
+ return '<Route {} {} on node {}>'.format(self.prefix, self.face,
self.node.name)
-
- __str__ = __repr__