contrib: fix a flake8 issue
authorMartin Liska <mliska@suse.cz>
Tue, 22 Jun 2021 07:50:38 +0000 (09:50 +0200)
committerMartin Liska <mliska@suse.cz>
Tue, 22 Jun 2021 07:50:38 +0000 (09:50 +0200)
contrib/ChangeLog:

* mklog.py: Fix flake8 issue.

contrib/mklog.py

index 0b434f6..674c1dc 100755 (executable)
@@ -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')