From mboxrd@z Thu Jan 1 00:00:00 1970 From: Keith Wiles Subject: [PATCH] Remove the extra blank lines in the output Date: Tue, 8 Dec 2015 12:52:17 -0600 Message-ID: <1449600737-48938-1-git-send-email-keith.wiles@intel.com> To: dev@dpdk.org Return-path: Received: from mga14.intel.com (mga14.intel.com [192.55.52.115]) by dpdk.org (Postfix) with ESMTP id AC4764A63 for ; Tue, 8 Dec 2015 19:52:28 +0100 (CET) List-Id: patches and discussions about DPDK List-Unsubscribe: , List-Archive: List-Post: List-Help: List-Subscribe: , Errors-To: dev-bounces@dpdk.org Sender: "dev" 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 20a409d..d38d0b5 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.3.0