From e7e880f514fee8fa4e81f2e2f4484e25f37817c9 Mon Sep 17 00:00:00 2001 From: =?UTF-8?q?Eren=20G=C3=B6lge?= Date: Fri, 5 Feb 2021 13:42:24 +0000 Subject: [PATCH] fix gdown --- TTS/utils/manage.py | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/TTS/utils/manage.py b/TTS/utils/manage.py index 3cf8d67f..524d8dbf 100644 --- a/TTS/utils/manage.py +++ b/TTS/utils/manage.py @@ -105,7 +105,7 @@ class ModelManager(object): return output_model_path, output_config_path def _download_file(self, idx, output): - gdown.download(f"{self.url_prefix}{idx}", output=output) + gdown.download(f"{self.url_prefix}{idx}", output=output, quiet=False)