2
2
mirror of https://github.com/octoleo/restic.git synced 2024-06-27 04:43:30 +00:00

Merge pull request #1019 from restic/fix-1017

ls: Print names with percent correctly
This commit is contained in:
Alexander Neumann 2017-06-10 12:43:46 +02:00
commit 539674614b

View File

@ -52,7 +52,7 @@ func printTree(repo *repository.Repository, id *restic.ID, prefix string) error
}
for _, entry := range tree.Nodes {
Printf(formatNode(prefix, entry, lsOptions.ListLong) + "\n")
Printf("%s\n", formatNode(prefix, entry, lsOptions.ListLong))
if entry.Type == "dir" && entry.Subtree != nil {
if err = printTree(repo, entry.Subtree, filepath.Join(prefix, entry.Name)); err != nil {