From mboxrd@z Thu Jan 1 00:00:00 1970 Return-Path: Received: from mga03.intel.com (mga03.intel.com [134.134.136.65]) by dpdk.org (Postfix) with ESMTP id 590CA1B471 for ; Mon, 7 Jan 2019 05:59:23 +0100 (CET) X-Amp-Result: SKIPPED(no attachment in message) X-Amp-File-Uploaded: False Received: from fmsmga008.fm.intel.com ([10.253.24.58]) by orsmga103.jf.intel.com with ESMTP/TLS/DHE-RSA-AES256-GCM-SHA384; 06 Jan 2019 20:59:23 -0800 X-ExtLoop1: 1 X-IronPort-AV: E=Sophos;i="5.56,449,1539673200"; d="scan'208";a="114658250" Received: from dts-maintain.sh.intel.com (HELO [10.67.118.153]) ([10.67.118.153]) by fmsmga008.fm.intel.com with ESMTP; 06 Jan 2019 20:59:22 -0800 To: Rami Rosen , dts@dpdk.org References: <20190103195021.3843-1-ramirose@gmail.com> From: Lijuan Tu Message-ID: <55d66501-c4ec-7269-c6ad-0470655b294a@intel.com> Date: Mon, 7 Jan 2019 21:22:08 +0800 User-Agent: Mozilla/5.0 (X11; Linux x86_64; rv:52.0) Gecko/20100101 Thunderbird/52.8.0 MIME-Version: 1.0 In-Reply-To: <20190103195021.3843-1-ramirose@gmail.com> Content-Type: text/plain; charset=utf-8; format=flowed Content-Transfer-Encoding: 8bit Content-Language: en-US Subject: Re: [dts] [PATCH] framework/ssh_pexpect: fix a typo X-BeenThere: dts@dpdk.org X-Mailman-Version: 2.1.15 Precedence: list List-Id: test suite reviews and discussions List-Unsubscribe: , List-Archive: List-Post: List-Help: List-Subscribe: , X-List-Received-Date: Mon, 07 Jan 2019 04:59:24 -0000 Applied, thanks On 2019年01月04日 03:50, Rami Rosen wrote: > This patch fixes a typo in framework/ssh_pexpect. > > Signed-off-by: Rami Rosen > --- > framework/ssh_pexpect.py | 4 ++-- > 1 file changed, 2 insertions(+), 2 deletions(-) > > diff --git a/framework/ssh_pexpect.py b/framework/ssh_pexpect.py > index 3c988b7..42221f1 100644 > --- a/framework/ssh_pexpect.py > +++ b/framework/ssh_pexpect.py > @@ -50,8 +50,8 @@ class SSHPexpect(object): > except Exception as e: > print RED(e) > if getattr(self, 'port', None): > - suggestion = "\nSuggession: Check if the fireware on [ %s ] " % \ > - self.ip + "is stoped\n" > + suggestion = "\nSuggession: Check if the firewall on [ %s ] " % \ > + self.ip + "is stopped\n" > print GREEN(suggestion) > > raise SSHConnectionException(self.host)