From 529ea3f67f584cdc77c9d65a45da1e12043f970b Mon Sep 17 00:00:00 2001 From: Edresson Casanova Date: Fri, 6 Oct 2023 17:26:40 -0300 Subject: [PATCH] Print a message when it is already donwloaded --- TTS/utils/manage.py | 2 ++ 1 file changed, 2 insertions(+) diff --git a/TTS/utils/manage.py b/TTS/utils/manage.py index 288cc118..fedab1d3 100644 --- a/TTS/utils/manage.py +++ b/TTS/utils/manage.py @@ -378,6 +378,8 @@ class ModelManager(object): if not config_local == config_remote: print(f" > {model_name} is already downloaded however it has been changed. Redownloading it...") self.create_dir_and_download_model(model_name, model_item, output_path) + else: + print(f" > {model_name} is already downloaded.") else: print(f" > {model_name} is already downloaded.") else: