Merge pull request #2261 from lorenzbausch/patch-1

Fix typo
This commit is contained in:
Alexander Neumann 2019-05-04 10:23:49 +02:00
commit 7dcd2968b6
1 changed files with 1 additions and 1 deletions

View File

@ -92,7 +92,7 @@ func printFromTree(ctx context.Context, tree *restic.Tree, repo restic.Repositor
node.Path = pathToPrint
return tarTree(ctx, repo, node, pathToPrint)
case l > 1:
return fmt.Errorf("%q should be a dir, but s a %q", item, node.Type)
return fmt.Errorf("%q should be a dir, but is a %q", item, node.Type)
case node.Type != "file":
return fmt.Errorf("%q should be a file, but is a %q", item, node.Type)
}