diff --git a/mvt/common/logo.py b/mvt/common/logo.py index a3ea034..9505ecc 100644 --- a/mvt/common/logo.py +++ b/mvt/common/logo.py @@ -26,7 +26,7 @@ def check_updates() -> None: # Before proceeding, we check if we have downloaded an indicators index. # If not, there's no point in proceeding with the updates check. if ioc_updates.get_latest_update() == 0: - print("\t\t[bold]You have not yet downloaded any indicators, check the `download-iocs` command!") + print("\t\t[bold]You have not yet downloaded any indicators, check the `download-iocs` command![/bold]") return # We only perform this check at a fixed frequency, in order to not @@ -43,7 +43,7 @@ def check_updates() -> None: pass else: if ioc_to_update: - print("\t\t[bold]There are updates to your indicators files! Run the `download-iocs` command to update!") + print("\t\t[bold]There are updates to your indicators files! Run the `download-iocs` command to update![/bold]") else: print("\t\tYour indicators files seem to be up to date.")