From 48b312b4ba4bb738e22b92980760b38ffa6d68a5 Mon Sep 17 00:00:00 2001 From: Martin Liska Date: Tue, 22 Jun 2021 09:50:38 +0200 Subject: [PATCH] contrib: fix a flake8 issue contrib/ChangeLog: * mklog.py: Fix flake8 issue. --- contrib/mklog.py | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/contrib/mklog.py b/contrib/mklog.py index 0b434f6..674c1dc 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') -- 2.7.4