From bc0a72e2f93f059886755efde37f4c4657db43a3 Mon Sep 17 00:00:00 2001 From: Bob Lantz Date: Mon, 13 Mar 2017 16:36:41 -0700 Subject: [PATCH] pass code check --- examples/cluster.py | 3 ++- 1 file changed, 2 insertions(+), 1 deletion(-) diff --git a/examples/cluster.py b/examples/cluster.py index 9f30c2f..e8a360e 100755 --- a/examples/cluster.py +++ b/examples/cluster.py @@ -892,7 +892,8 @@ def testRemoteNet( remote='ubuntu2', link=RemoteGRELink ): net.start() info( 'Mininet is running on', quietRun( 'hostname' ).strip(), '\n' ) for node in c0, h1, h2, s1, s2: - info( 'Node', node, 'is running on', node.cmd( 'hostname' ).strip(), '\n' ) + info( 'Node', node, 'is running on', + node.cmd( 'hostname' ).strip(), '\n' ) net.pingAll() CLI( net ) net.stop()