diff --git a/vollerei/cli/hsr.py b/vollerei/cli/hsr.py index a04261c..58e6bbc 100644 --- a/vollerei/cli/hsr.py +++ b/vollerei/cli/hsr.py @@ -235,10 +235,7 @@ class PatchTelemetryCommand(Command): + "we need to block these hosts." ) if not self.confirm("Do you want to block them?"): - self.line("Patching aborted.") - self.line( - "Please block these hosts manually then try again." - ) + self.line("Blocking aborted.") return try: patcher.block_telemetry(telemetry_list=telemetry_list) @@ -246,13 +243,6 @@ class PatchTelemetryCommand(Command): self.line_error( f"Couldn't block telemetry hosts: {e.__context__}" ) - # There's a good reason for this. - if system() != "Windows": - self.line( - "Cannot continue, please block them manually then try again." - ) - return - self.line("Continuing anyway...") else: progress.finish("No telemetry hosts found.")