From mboxrd@z Thu Jan 1 00:00:00 1970 Return-Path: Received: from mails.dpdk.org (mails.dpdk.org [217.70.189.124]) by inbox.dpdk.org (Postfix) with ESMTP id 730FAA0503; Wed, 18 May 2022 11:12:58 +0200 (CEST) Received: from [217.70.189.124] (localhost [127.0.0.1]) by mails.dpdk.org (Postfix) with ESMTP id 6D12E40156; Wed, 18 May 2022 11:12:58 +0200 (CEST) Received: from mga14.intel.com (mga14.intel.com [192.55.52.115]) by mails.dpdk.org (Postfix) with ESMTP id B0916400D6 for ; Wed, 18 May 2022 11:12:56 +0200 (CEST) DKIM-Signature: v=1; a=rsa-sha256; c=relaxed/simple; d=intel.com; i=@intel.com; q=dns/txt; s=Intel; t=1652865176; x=1684401176; h=message-id:date:content-transfer-encoding:mime-version: subject:from:to:reply-to:cc:in-reply-to; bh=OTR/aVgq52REIyykky0SXf6Q7omhgjqYyLayX1XrYMQ=; b=YePhUYbLjQpL2ntpi1Ol6oMtbcBSjsv3qzVU+voARByBoEs7E6JhOY+h hZd8UQCqYYp/YGTQD5uumiEJUhahDsZSC4+PU1ekr8widihvBJuYngcXP XVyRCIn9DbFQToFmHzJj28bsn3O25c6Y20dtO6eh3dwxdBphM3CokBHEo MVrOyfvtiFJpLDEOIMZM9Y+FFA3+Rj2mq4rj6yaRpg94WAKpxE++aRO5r F/PWvNpeVV9CXBwO91TYwK5zCfsII/5ki++xY20HOJNULbReF7srKH5bh 1ypaGCNUwbSXlHOJjEwBUWacmq8liuT1YBwY+V+98Qlfpk1lFUJwdz8/3 A==; X-IronPort-AV: E=McAfee;i="6400,9594,10350"; a="271701731" X-IronPort-AV: E=Sophos;i="5.91,234,1647327600"; d="scan'208";a="271701731" Received: from fmsmga001.fm.intel.com ([10.253.24.23]) by fmsmga103.fm.intel.com with ESMTP/TLS/ECDHE-RSA-AES256-GCM-SHA384; 18 May 2022 02:12:55 -0700 Message-Id: <8ea9f5$l978g3@fmsmga001-auth.fm.intel.com> Date: 18 May 2022 02:12:54 -0700 X-IronPort-AV: E=Sophos;i="5.91,234,1647327600"; d="scan'208";a="714318348" Received: from dpdk-lijuan-1.sh.intel.com ([10.67.119.208]) by fmsmga001-auth.fm.intel.com with ESMTP/TLS/ECDHE-RSA-AES256-GCM-SHA384; 18 May 2022 02:12:54 -0700 Content-Type: text/plain; charset="utf-8" Content-Transfer-Encoding: 7bit MIME-Version: 1.0 Subject: [dts] [V1] ixia_network/ixnet: fix bug of changing string content From: lijuan.tu@intel.com To: dts@dpdk.org,Jun Dong Cc: lijuan.tu@intel.com,qingx.sun@intel.com,junx.dong@intel.com In-Reply-To: <20220511061415.3665-1-junx.dong@intel.com> X-BeenThere: dts@dpdk.org X-Mailman-Version: 2.1.29 Precedence: list List-Id: test suite reviews and discussions List-Unsubscribe: , List-Archive: List-Post: List-Help: List-Subscribe: , Reply-To: Jun Dong Errors-To: dts-bounces@dpdk.org On Wed, 11 May 2022 14:14:15 +0800, Jun Dong wrote: > In history patch that add OUTPUT_DIR variable into initional function to > fix E1101 error that instance has no member error[pylint checking]. this > intruduce a bug, OUTPUT_DIR was defined in subclass as a property contained > a string , and when parent class initial, the OUTPUT_DIR attribute was > already exist and couldn't redefine again. this patch attempt to fix it > that through reflection mechanism to get the value instead of using > the variable directly and to avoid the E1101 error. > > Signed-off-by: Jun Dong Applied, thanks