Return-Path: Received: (majordomo@vger.kernel.org) by vger.kernel.org via listexpand id S1758198AbcDAH4Q (ORCPT ); Fri, 1 Apr 2016 03:56:16 -0400 Received: from cavendish.fsfeurope.org ([217.69.89.162]:34317 "EHLO cavendish.fsfeurope.org" rhost-flags-OK-OK-OK-OK) by vger.kernel.org with ESMTP id S1751706AbcDAH4P (ORCPT ); Fri, 1 Apr 2016 03:56:15 -0400 X-Greylist: delayed 568 seconds by postgrey-1.27 at vger.kernel.org; Fri, 01 Apr 2016 03:56:15 EDT Date: Fri, 1 Apr 2016 09:46:39 +0200 From: Valentin Rothberg To: Andreas Ziegler Cc: Valentin Rothberg , Greg Kroah-Hartman , linux-kernel@vger.kernel.org Subject: Re: [PATCH] checkkconfigsymbols.py: Fix typo in help message Message-ID: <20160401074639.GA2887@debian> References: <1459409069-26886-1-git-send-email-andreas.ziegler@fau.de> MIME-Version: 1.0 Content-Type: text/plain; charset=utf-8 Content-Disposition: inline In-Reply-To: <1459409069-26886-1-git-send-email-andreas.ziegler@fau.de> User-Agent: Mutt/1.5.24 (2015-08-30) Sender: linux-kernel-owner@vger.kernel.org List-ID: X-Mailing-List: linux-kernel@vger.kernel.org Content-Length: 921 Lines: 27 On Mar 31 '16 09:24, Andreas Ziegler wrote: > Fix a typo in the help message for the -d parameter by removing one 'm'. > > Signed-off-by: Andreas Ziegler Acked-by: Valentin Rothberg > --- > scripts/checkkconfigsymbols.py | 2 +- > 1 file changed, 1 insertion(+), 1 deletion(-) > > diff --git a/scripts/checkkconfigsymbols.py b/scripts/checkkconfigsymbols.py > index d8f6c09..df643f6 100755 > --- a/scripts/checkkconfigsymbols.py > +++ b/scripts/checkkconfigsymbols.py > @@ -89,7 +89,7 @@ def parse_options(): > > if opts.diff and not re.match(r"^[\w\-\.]+\.\.[\w\-\.]+$", opts.diff): > sys.exit("Please specify valid input in the following format: " > - "\'commmit1..commit2\'") > + "\'commit1..commit2\'") > > if opts.commit or opts.diff: > if not opts.force and tree_is_dirty(): > -- > 1.9.1 >