From f0113139ea464c3d8f409cf43ff005f0f93a7a54 Mon Sep 17 00:00:00 2001 From: Alexander Weiss Date: Mon, 30 Nov 2020 13:53:12 +0100 Subject: [PATCH] prune: Correct error message --- cmd/restic/cmd_prune.go | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/cmd/restic/cmd_prune.go b/cmd/restic/cmd_prune.go index 8ee635f64..bdad4efd9 100644 --- a/cmd/restic/cmd_prune.go +++ b/cmd/restic/cmd_prune.go @@ -245,7 +245,7 @@ func prune(opts PruneOptions, gopts GlobalOptions, repo restic.Repository, usedB // Check if all used blobs have been found in index if len(usedBlobs) != 0 { - Warnf("%v not found in the new index\n"+ + Warnf("%v not found in the index\n"+ "Data blobs seem to be missing, aborting prune to prevent further data loss!\n"+ "Please report this error (along with the output of the 'prune' run) at\n"+ "https://github.com/restic/restic/issues/new/choose", usedBlobs)