From patchwork Tue Dec 8 18:52:17 2015 Content-Type: text/plain; charset="utf-8" MIME-Version: 1.0 Content-Transfer-Encoding: 7bit X-Patchwork-Submitter: "Wiles, Keith" X-Patchwork-Id: 9420 X-Patchwork-Delegate: thomas@monjalon.net Return-Path: X-Original-To: patchwork@dpdk.org Delivered-To: patchwork@dpdk.org Received: from [92.243.14.124] (localhost [IPv6:::1]) by dpdk.org (Postfix) with ESMTP id 82212568A; Tue, 8 Dec 2015 19:52:30 +0100 (CET) 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) Received: from fmsmga003.fm.intel.com ([10.253.24.29]) by fmsmga103.fm.intel.com with ESMTP; 08 Dec 2015 10:52:27 -0800 X-ExtLoop1: 1 X-IronPort-AV: E=Sophos;i="5.20,400,1444719600"; d="scan'208";a="614676581" Received: from teclark-mobl1.amr.corp.intel.com ([10.252.141.53]) by FMSMGA003.fm.intel.com with ESMTP; 08 Dec 2015 10:52:27 -0800 From: Keith Wiles To: dev@dpdk.org Date: Tue, 8 Dec 2015 12:52:17 -0600 Message-Id: <1449600737-48938-1-git-send-email-keith.wiles@intel.com> X-Mailer: git-send-email 2.4.9 (Apple Git-60) Subject: [dpdk-dev] [PATCH] Remove the extra blank lines in the output X-BeenThere: dev@dpdk.org X-Mailman-Version: 2.1.15 Precedence: list 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 ""