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 4DF8EA04C5; Sun, 6 Sep 2020 03:32:53 +0200 (CEST) Received: from [92.243.14.124] (localhost [127.0.0.1]) by dpdk.org (Postfix) with ESMTP id 8498B1C12C; Sun, 6 Sep 2020 03:31:54 +0200 (CEST) Received: from mail-pg1-f173.google.com (mail-pg1-f173.google.com [209.85.215.173]) by dpdk.org (Postfix) with ESMTP id 418B41C112 for ; Sun, 6 Sep 2020 03:31:50 +0200 (CEST) Received: by mail-pg1-f173.google.com with SMTP id v15so6287569pgh.6 for ; Sat, 05 Sep 2020 18:31:50 -0700 (PDT) DKIM-Signature: v=1; a=rsa-sha256; c=relaxed/relaxed; d=networkplumber-org.20150623.gappssmtp.com; s=20150623; h=from:to:cc:subject:date:message-id:in-reply-to:references :mime-version:content-transfer-encoding; bh=hI58Pz/6Cs2k0URmOEslnb5nfs6wcSuchRbbNDNcdcc=; b=2I6f3FiTgZKJbnSKbN7U90LJ1/Resp+rasHwtLg+5xq+VV4IXRrMWoVfhFNEH5NKVX xTG182AZ/AzKilMcQ63y7eJAG6vPqoPSOWNW7XQSUWetc3jI8a/XudeMSv1UrevqO2Ib gkpoHdZQruDCIyAw1CDxASGk5M6YwRSHfnRiv+4TH9ZgIZ1YaL7Uihc4fYSdtjbQuGTL SfnaEShNty5MQeD1IcaxglabWRnD6XHwO3VyaYP3siPLXDYM4eJUU1K04+zIdWj1UESk AwMElSTifQ4dmx5IYPbDsDO+tZoaLm45TnV6NL7wzhuvghRntm6wdSKtZyBkSOUJ1YSh CP1Q== X-Google-DKIM-Signature: v=1; a=rsa-sha256; c=relaxed/relaxed; d=1e100.net; s=20161025; h=x-gm-message-state:from:to:cc:subject:date:message-id:in-reply-to :references:mime-version:content-transfer-encoding; bh=hI58Pz/6Cs2k0URmOEslnb5nfs6wcSuchRbbNDNcdcc=; b=HZ34EsWeGCkzied3GGPaY+rQULcEsEjnox04U0ItNyDh/Z9bJX5J2cIE7uQtmda820 lB4GR7aXZsMBs49zurhPJc1EbZv9cIdAyyqirIorQwjPG1E/CwleGG3Tr2EyQaTm8RJz Ki4UT6Nb4UpaUqBRYQQ+flCxkp1f1iC2D+xGox6yYyXr7NeUgTZh26tQDEKln6rPgGXU n9J2tGuKFi0hH3DuA5f3XaDwNxtqfJphppbpz7TmuyGOIwoLdkxZgTM1r98suI/LU3Tw PPlijFsgjkeWvky37VXuki3gvFGyhCLaT38103ddWPpdv92E/f7igh+UupmwZXkosBGw TftQ== X-Gm-Message-State: AOAM533Aj8jf+BmtdtQ7eHsAdSE1M3mpybxe/aRCJHiSH7ZhrpRk+qbR sNBQLTUbXePpNq4fMfpoLKSoPao3lpJhSA== X-Google-Smtp-Source: ABdhPJz+bMwe9ar2L0XI/oD1tIRYJQFnhxX83OM1AtI+BPcH1E27X1oXFVlq1GrtIKWdwSg55JPUXw== X-Received: by 2002:a63:5160:: with SMTP id r32mr12877397pgl.112.1599355909157; Sat, 05 Sep 2020 18:31:49 -0700 (PDT) Received: from hermes.lan (204-195-22-127.wavecable.com. [204.195.22.127]) by smtp.gmail.com with ESMTPSA id n127sm10731863pfn.155.2020.09.05.18.31.48 (version=TLS1_3 cipher=TLS_AES_256_GCM_SHA384 bits=256/256); Sat, 05 Sep 2020 18:31:48 -0700 (PDT) From: Stephen Hemminger To: dev@dpdk.org Cc: Stephen Hemminger Date: Sat, 5 Sep 2020 18:31:29 -0700 Message-Id: <20200906013133.26360-8-stephen@networkplumber.org> X-Mailer: git-send-email 2.27.0 In-Reply-To: <20200906013133.26360-1-stephen@networkplumber.org> References: <20200906013133.26360-1-stephen@networkplumber.org> MIME-Version: 1.0 Content-Transfer-Encoding: 8bit Subject: [dpdk-dev] [PATCH 07/11] dpdk-pmdinfo: fix indentation 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" This fixes indentation warnings from pylint. Signed-off-by: Stephen Hemminger --- usertools/dpdk-pmdinfo.py | 4 ++-- 1 file changed, 2 insertions(+), 2 deletions(-) diff --git a/usertools/dpdk-pmdinfo.py b/usertools/dpdk-pmdinfo.py index 7c27a91182e4..d72feb308a6c 100755 --- a/usertools/dpdk-pmdinfo.py +++ b/usertools/dpdk-pmdinfo.py @@ -323,7 +323,7 @@ def display_pmd_info_strings(self, section_spec): while dataptr < len(data): while (dataptr < len(data) and - not 32 <= byte2int(data[dataptr]) <= 127): + not 32 <= byte2int(data[dataptr]) <= 127): dataptr += 1 if dataptr >= len(data): @@ -389,7 +389,7 @@ def search_for_autoload_path(self): while dataptr < len(data): while (dataptr < len(data) and - not 32 <= byte2int(data[dataptr]) <= 127): + not 32 <= byte2int(data[dataptr]) <= 127): dataptr += 1 if dataptr >= len(data): -- 2.27.0