mirror of https://github.com/coqui-ai/TTS.git
Print a message when it is already donwloaded
This commit is contained in:
parent
ee1ef1c51e
commit
529ea3f67f
|
@ -378,6 +378,8 @@ class ModelManager(object):
|
||||||
if not config_local == config_remote:
|
if not config_local == config_remote:
|
||||||
print(f" > {model_name} is already downloaded however it has been changed. Redownloading it...")
|
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)
|
self.create_dir_and_download_model(model_name, model_item, output_path)
|
||||||
|
else:
|
||||||
|
print(f" > {model_name} is already downloaded.")
|
||||||
else:
|
else:
|
||||||
print(f" > {model_name} is already downloaded.")
|
print(f" > {model_name} is already downloaded.")
|
||||||
else:
|
else:
|
||||||
|
|
Loading…
Reference in New Issue