From 0f0ae3f1b0db51ee87972d31bc21b697e0ceb7eb Mon Sep 17 00:00:00 2001 From: Keith Wiles Date: Tue, 8 Dec 2015 12:52:17 -0600 Subject: [PATCH] tools: remove extra blank lines in CPU layout The output for the core list included an extra linefeed making the number of lines displayed much larger then required. Signed-off-by: Keith Wiles --- tools/cpu_layout.py | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/tools/cpu_layout.py b/tools/cpu_layout.py index 20a409d9d6..d38d0b5a0c 100755 --- a/tools/cpu_layout.py +++ b/tools/cpu_layout.py @@ -92,4 +92,4 @@ for c in cores: print "Core %s" % str(c).ljust(max_core_id_len), for s in sockets: print str(core_map[(s,c)]).ljust(max_core_map_len), - print "\n" + print "" -- 2.20.1