Add missing newline printouts
This commit is contained in:
+2
-2
@@ -851,7 +851,7 @@ class Cli( object ):
|
|||||||
# Interpreter
|
# Interpreter
|
||||||
def run( self ):
|
def run( self ):
|
||||||
"Read and execute commands."
|
"Read and execute commands."
|
||||||
lg.info("*** cli: starting")
|
lg.info("*** cli: starting\n")
|
||||||
while True:
|
while True:
|
||||||
lg.info("mininet> ")
|
lg.info("mininet> ")
|
||||||
input = sys.stdin.readline()
|
input = sys.stdin.readline()
|
||||||
@@ -883,7 +883,7 @@ class Cli( object ):
|
|||||||
elif first == '?': self.help( rest )
|
elif first == '?': self.help( rest )
|
||||||
else:
|
else:
|
||||||
lg.error("cli: unknown node or command: < %s >\n" % first)
|
lg.error("cli: unknown node or command: < %s >\n" % first)
|
||||||
lg.info("*** cli: exiting")
|
lg.info("*** cli: exiting\n")
|
||||||
|
|
||||||
def fixLimits():
|
def fixLimits():
|
||||||
"Fix ridiculously small resource limits."
|
"Fix ridiculously small resource limits."
|
||||||
|
|||||||
Reference in New Issue
Block a user