correcting the error statement

This commit is contained in:
vishalnayak 2017-01-13 03:58:46 -05:00
parent 76a456cc97
commit 5aeb276018
1 changed files with 1 additions and 1 deletions

View File

@ -59,7 +59,7 @@ func (b *FileBackend) Delete(path string) error {
}
if err != nil && !os.IsNotExist(err) {
return fmt.Errorf("Failed to remove %q: %v", fullPathPrefixedFileName, err)
return fmt.Errorf("Failed to remove %q: %v", path, err)
}
err = b.cleanupLogicalPath(path)