From a3642b897dad68d4f86a0c504ed3c1115c52d491 Mon Sep 17 00:00:00 2001 From: Johan Andersson Date: Fri, 4 Jun 2021 20:02:00 +0200 Subject: [PATCH] Add missing comma --- lib/svtplay_dl/utils/parser.py | 6 +++++- 1 file changed, 5 insertions(+), 1 deletion(-) diff --git a/lib/svtplay_dl/utils/parser.py b/lib/svtplay_dl/utils/parser.py index 468ff87..cfc3696 100644 --- a/lib/svtplay_dl/utils/parser.py +++ b/lib/svtplay_dl/utils/parser.py @@ -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="*")