Update TTS/utils/manage.py
Browse files- TTS/utils/manage.py +2 -1
TTS/utils/manage.py
CHANGED
@@ -220,7 +220,8 @@ class ModelManager(object):
|
|
220 |
if "license" in model_item and model_item["license"].strip() != "":
|
221 |
print(f" > Model's license - {model_item['license']}")
|
222 |
if model_item["license"].lower() in LICENSE_URLS:
|
223 |
-
|
|
|
224 |
else:
|
225 |
print(" > Check https://opensource.org/licenses for more info.")
|
226 |
else:
|
|
|
220 |
if "license" in model_item and model_item["license"].strip() != "":
|
221 |
print(f" > Model's license - {model_item['license']}")
|
222 |
if model_item["license"].lower() in LICENSE_URLS:
|
223 |
+
# Fix: Use single quotes inside the f-string
|
224 |
+
print(f" > Check {LICENSE_URLS[model_item['license'].lower()]} for more info.")
|
225 |
else:
|
226 |
print(" > Check https://opensource.org/licenses for more info.")
|
227 |
else:
|