From 228a5f640e0bd007654b7d909e8d6d893b747e3e Mon Sep 17 00:00:00 2001 From: 2Shirt <2xShirt@gmail.com> Date: Sat, 24 Jun 2023 18:56:03 -0700 Subject: [PATCH] Adjust TRIM warning message --- scripts/wk/clone/ddrescue.py | 3 +-- 1 file changed, 1 insertion(+), 2 deletions(-) diff --git a/scripts/wk/clone/ddrescue.py b/scripts/wk/clone/ddrescue.py index 7e34d3d6..3d16f597 100644 --- a/scripts/wk/clone/ddrescue.py +++ b/scripts/wk/clone/ddrescue.py @@ -646,8 +646,7 @@ class State(): # Select source self.source = select_disk_obj('source', disk_menu, docopt_args['']) if self.source.trim: - cli.print_error('Source device supports TRIM') - cli.print_warning('Continuing recovery is STRONGLY DISADVISED!') + cli.print_warning('Source device supports TRIM') if not cli.ask(' Proceed with recovery?'): cli.abort() self.ui.set_title('Source', self.source.name)