From mboxrd@z Thu Jan 1 00:00:00 1970 Return-Path: Received: from bcmv-tmail01.ecl.ntt.co.jp (bcmv-tmail01.ecl.ntt.co.jp [124.146.185.148]) by dpdk.org (Postfix) with ESMTP id C37902F42 for ; Tue, 13 Nov 2018 17:28:15 +0100 (CET) Received: from bcmv-ns01.ecl.ntt.co.jp (bcmv-ns01.ecl.ntt.co.jp [129.60.83.123]) by bcmv-tmail01.ecl.ntt.co.jp (8.14.4/8.14.4) with ESMTP id wADGSEcg020396; Wed, 14 Nov 2018 01:28:14 +0900 Received: from bcmv-ns01.ecl.ntt.co.jp (localhost [127.0.0.1]) by bcmv-ns01.ecl.ntt.co.jp (Postfix) with ESMTP id 82992154; Wed, 14 Nov 2018 01:28:14 +0900 (JST) Received: from localhost.localdomain (lobster.nslab.ecl.ntt.co.jp [129.60.13.95]) by bcmv-ns01.ecl.ntt.co.jp (Postfix) with ESMTP id 6CF2BE8; Wed, 14 Nov 2018 01:28:14 +0900 (JST) From: ogawa.yasufumi@lab.ntt.co.jp To: ferruh.yigit@intel.com, spp@dpdk.org, ogawa.yasufumi@lab.ntt.co.jp Date: Wed, 14 Nov 2018 01:25:58 +0900 Message-Id: <1542126358-11856-3-git-send-email-ogawa.yasufumi@lab.ntt.co.jp> X-Mailer: git-send-email 2.7.4 In-Reply-To: <1542126358-11856-1-git-send-email-ogawa.yasufumi@lab.ntt.co.jp> References: <1542126358-11856-1-git-send-email-ogawa.yasufumi@lab.ntt.co.jp> MIME-Version: 1.0 Content-Type: text/plain; charset=y Content-Transfer-Encoding: 8bit X-TM-AS-MML: disable Subject: [spp] [PATCH 2/2] tools/sppc: remove invalid chars in testpmd app X-BeenThere: spp@dpdk.org X-Mailman-Version: 2.1.15 Precedence: list List-Id: Soft Patch Panel List-Unsubscribe: , List-Archive: List-Post: List-Help: List-Subscribe: , X-List-Received-Date: Tue, 13 Nov 2018 16:28:16 -0000 From: Yasufumi Ogawa This update is to remove characters of invalid code from the help message of `testpmd.py`. Signed-off-by: Yasufumi Ogawa --- tools/sppc/app/testpmd.py | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/tools/sppc/app/testpmd.py b/tools/sppc/app/testpmd.py index 8d4057c..487bb9f 100755 --- a/tools/sppc/app/testpmd.py +++ b/tools/sppc/app/testpmd.py @@ -250,7 +250,7 @@ def parse_args(): parser.add_argument( '--no-flush-rx', action='store_true', - help="Don’t flush the RX streams before starting forwarding, " + + help="Don't flush the RX streams before starting forwarding, " + "Used mainly with the PCAP PMD") parser.add_argument( '--txpkts', -- 2.7.4