aboutsummaryrefslogtreecommitdiffstats
path: root/resources/libraries/python/NodePath.py
diff options
context:
space:
mode:
authorMatus Fabian <matfabia@cisco.com>2016-02-23 08:56:29 +0100
committerGerrit Code Review <gerrit@fd.io>2016-02-23 13:55:03 +0000
commitae7411c745d47a70bb36c3d5cb6b2907f5697e57 (patch)
tree0ec6ed9a2932d48bedcfdc9226e8472b763c5cab /resources/libraries/python/NodePath.py
parent44f173ecd1311296e347b066592163e9abbe3483 (diff)
Fixed strings with format splitting
Change-Id: Iaded6b2ba46df86dd89afb2e2dc411d9972fb7d7 Signed-off-by: Matus Fabian <matfabia@cisco.com>
Diffstat (limited to 'resources/libraries/python/NodePath.py')
-rw-r--r--resources/libraries/python/NodePath.py2
1 files changed, 1 insertions, 1 deletions
diff --git a/resources/libraries/python/NodePath.py b/resources/libraries/python/NodePath.py
index 6700ddfe2a..51808c3edf 100644
--- a/resources/libraries/python/NodePath.py
+++ b/resources/libraries/python/NodePath.py
@@ -117,7 +117,7 @@ class NodePath(object):
l_set = set(links).difference(self._links)
if not l_set:
raise RuntimeError(
- 'No free link between {0} and {1}, all links already ' +
+ 'No free link between {0} and {1}, all links already ' \
'used'.format(node1['host'], node2['host']))
if not l_set: