From ac5080f273385aa08656876b80cc3cf08eff2613 Mon Sep 17 00:00:00 2001 From: Alex Leahu Date: Mon, 22 May 2023 20:43:12 -0500 Subject: [PATCH] [DOCS] Fix --update-with-info-json message (#618) * Fix --update-with-info-json message * Run black with --preview to fix pylint error --- src/ytdl_sub/cli/main.py | 5 +++-- 1 file changed, 3 insertions(+), 2 deletions(-) diff --git a/src/ytdl_sub/cli/main.py b/src/ytdl_sub/cli/main.py index a8491b5e..8e9e247d 100644 --- a/src/ytdl_sub/cli/main.py +++ b/src/ytdl_sub/cli/main.py @@ -316,8 +316,9 @@ def main() -> List[Tuple[Subscription, FileHandlerTransactionLog]]: and not config.config_options.experimental.enable_update_with_info_json ): raise ExperimentalFeatureNotEnabled( - "--update-with-info-json requires setting " - "configuration.experimental.update_with_info_json to True. This feature is ", + "--update-with-info-json requires setting" + " configuration.experimental.enable_update_with_info_json to True. This" + " feature is ", "still being tested and has the ability to destroy files. Ensure you have a ", "full backup before usage. You have been warned!", )