correcting the error statement
This commit is contained in:
parent
76a456cc97
commit
5aeb276018
|
@ -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)
|
||||
|
|
Loading…
Reference in New Issue