1
0
mirror of https://github.com/spaam/svtplay-dl.git synced 2024-11-27 21:54:17 +01:00

Add missing comma

This commit is contained in:
Johan Andersson 2021-06-04 20:02:00 +02:00
parent 4fce57bcb9
commit a3642b897d

View File

@ -277,7 +277,11 @@ def gen_parser(version="unknown"):
)
postprocessing.add_argument("--no-postprocess", dest="no_postprocess", default=False, action="store_true", help="Do not postprocess anything")
postprocessing.add_argument(
"--keep-original", dest="keep_original", default=False, action="store_true", help="Do postprocessing while also keeping original files"
"--keep-original",
dest="keep_original",
default=False,
action="store_true",
help="Do postprocessing while also keeping original files",
)
parser.add_argument("urls", nargs="*")