From: Martin Liska Date: Tue, 22 Jun 2021 07:50:38 +0000 (+0200) Subject: contrib: fix a flake8 issue X-Git-Tag: basepoints/gcc-13~6603 X-Git-Url: http://git.ipfire.org/?a=commitdiff_plain;h=48b312b4ba4bb738e22b92980760b38ffa6d68a5;p=thirdparty%2Fgcc.git contrib: fix a flake8 issue contrib/ChangeLog: * mklog.py: Fix flake8 issue. --- diff --git a/contrib/mklog.py b/contrib/mklog.py index 0b434f67971f..674c1dcd78b9 100755 --- a/contrib/mklog.py +++ b/contrib/mklog.py @@ -304,7 +304,7 @@ if __name__ == '__main__': parser.add_argument('input', nargs='?', help='Patch file (or missing, read standard input)') parser.add_argument('-b', '--pr-numbers', action='store', - type=lambda arg: arg.split(','), nargs="?", + type=lambda arg: arg.split(','), nargs='?', help='Add the specified PRs (comma separated)') parser.add_argument('-s', '--no-functions', action='store_true', help='Do not generate function names in ChangeLogs')