diff --git a/.bin/Scripts/functions/ddrescue.py b/.bin/Scripts/functions/ddrescue.py index 794874b0..0be07ddd 100644 --- a/.bin/Scripts/functions/ddrescue.py +++ b/.bin/Scripts/functions/ddrescue.py @@ -489,8 +489,9 @@ class RecoveryState(): percent = (b_pair.rescued / b_pair.size) * 100 except ZeroDivisionError: percent = 0 - report.append('{} rescued: {:0.2f}% error size: {}'.format( + report.append('{} ({}) rescued: {:0.2f}% error size: {}'.format( b_pair.source.path, + human_readable_size(b_pair.source.size, decimals=1), percent, human_readable_size(b_pair.size-b_pair.rescued, decimals=2), ))