From mboxrd@z Thu Jan 1 00:00:00 1970 Return-Path: Received: from dpdk.org (dpdk.org [92.243.14.124]) by inbox.dpdk.org (Postfix) with ESMTP id AF394A0350; Thu, 25 Jun 2020 14:48:29 +0200 (CEST) Received: from [92.243.14.124] (localhost [127.0.0.1]) by dpdk.org (Postfix) with ESMTP id E27C9E07; Thu, 25 Jun 2020 14:48:28 +0200 (CEST) Received: from mga03.intel.com (mga03.intel.com [134.134.136.65]) by dpdk.org (Postfix) with ESMTP id 707982AB for ; Thu, 25 Jun 2020 14:48:26 +0200 (CEST) IronPort-SDR: cBoDXLvq+sgqCAF0qFrrI0RqRKy6kboW0xJUAer80LPV07oCEgwFdKIYPlP4mkT8EsUL3ylsj/ vpKNjm2/1YUw== X-IronPort-AV: E=McAfee;i="6000,8403,9662"; a="144929919" X-IronPort-AV: E=Sophos;i="5.75,279,1589266800"; d="scan'208";a="144929919" X-Amp-Result: SKIPPED(no attachment in message) X-Amp-File-Uploaded: False Received: from orsmga005.jf.intel.com ([10.7.209.41]) by orsmga103.jf.intel.com with ESMTP/TLS/ECDHE-RSA-AES256-GCM-SHA384; 25 Jun 2020 05:48:25 -0700 IronPort-SDR: WiCqW+Pg//7Ta+Fxoa1BRnygaY4uwMjH1GECK3GkbNjGaVq/aV6YikihArkTy7Ci/Q8yIe/o0P 2NJL/wPa41wA== X-ExtLoop1: 1 X-IronPort-AV: E=Sophos;i="5.75,279,1589266800"; d="scan'208";a="452990520" Received: from aburakov-mobl.ger.corp.intel.com (HELO [10.252.30.244]) ([10.252.30.244]) by orsmga005.jf.intel.com with ESMTP; 25 Jun 2020 05:48:24 -0700 To: Louise Kilheeney , dev@dpdk.org Cc: robin.jarry@6wind.com, bruce.richardson@intel.com References: <20200522132320.26373-1-louise.kilheeney@intel.com> <20200617151051.21191-1-louise.kilheeney@intel.com> <20200617151051.21191-3-louise.kilheeney@intel.com> From: "Burakov, Anatoly" Message-ID: Date: Thu, 25 Jun 2020 13:48:23 +0100 User-Agent: Mozilla/5.0 (Windows NT 10.0; WOW64; rv:68.0) Gecko/20100101 Thunderbird/68.9.0 MIME-Version: 1.0 In-Reply-To: <20200617151051.21191-3-louise.kilheeney@intel.com> Content-Type: text/plain; charset=utf-8; format=flowed Content-Language: en-US Content-Transfer-Encoding: 7bit Subject: Re: [dpdk-dev] [PATCH v2 2/9] usertools/dpdk-devbind: support python3 only X-BeenThere: dev@dpdk.org X-Mailman-Version: 2.1.15 Precedence: list List-Id: DPDK patches and discussions List-Unsubscribe: , List-Archive: List-Post: List-Help: List-Subscribe: , Errors-To: dev-bounces@dpdk.org Sender: "dev" On 17-Jun-20 4:10 PM, Louise Kilheeney wrote: > Changed script to explicitly use python3 only to avoid > maintaining python 2. > > Signed-off-by: Louise Kilheeney > > --- > v2: removed check_output function as not required for python3. > --- > usertools/dpdk-devbind.py | 17 ++++------------- > 1 file changed, 4 insertions(+), 13 deletions(-) > > diff --git a/usertools/dpdk-devbind.py b/usertools/dpdk-devbind.py > index dc008823f..f29dd7f64 100755 > --- a/usertools/dpdk-devbind.py > +++ b/usertools/dpdk-devbind.py > @@ -1,9 +1,8 @@ > -#! /usr/bin/env python > +#! /usr/bin/env python3 Maybe drop the space before '/' too here. Reviewed-by: Anatoly Burakov -- Thanks, Anatoly