Restore links output format

In the change from print -> print() -> output() we lost the new lines
which makes it hard to read the output
This commit is contained in:
Jon Hall
2016-08-23 10:49:36 -07:00
parent 3276e3fef5
commit cea176fa9f
+1 -1
View File
@@ -373,7 +373,7 @@ class CLI( Cmd ):
def do_links( self, _line ):
"Report on links"
for link in self.mn.links:
output( link, link.status() )
output( link, link.status(), '\n' )
def do_switch( self, line ):
"Starts or stops a switch"