From 68a598410b74615a3cd4a4e4948661facb916ba9 Mon Sep 17 00:00:00 2001 From: tretrauit Date: Sun, 25 Jun 2023 22:16:07 +0700 Subject: [PATCH] cli/hsr: add telemetry check text --- vollerei/cli/hsr.py | 4 ++++ 1 file changed, 4 insertions(+) diff --git a/vollerei/cli/hsr.py b/vollerei/cli/hsr.py index 427ea7d..cc3e22e 100644 --- a/vollerei/cli/hsr.py +++ b/vollerei/cli/hsr.py @@ -82,8 +82,10 @@ class HSR: if not ask("Do you still want to patch?"): print("Patching aborted.") return + print("Checking telemetry hosts...", end=" ") telemetry_list = self._patcher.check_telemetry() if telemetry_list: + print("FOUND") print("Telemetry hosts found: ") for host in telemetry_list: print(f" - {host}") @@ -100,6 +102,8 @@ class HSR: print("Cannot continue, please block them manually then try again.") return print("Continuing anyway...") + else: + print("OK") if not self.__update_patch(): return match self._patcher.patch_type: