This commit is contained in:
cupcakearmy 2021-04-15 23:16:47 +02:00
parent 6449b8999f
commit 8e13e7bc40
No known key found for this signature in database
GPG Key ID: D28129AE5654D9D9
1 changed files with 1 additions and 1 deletions

View File

@ -122,7 +122,7 @@ func (l Location) getPath() (string, error) {
case TypeVolume:
return "/volume/" + l.Name + "/" + l.getVolumeName(), nil
}
return "", fmt.Errorf("Could not get path for location \"%s\"", l.Name)
return "", fmt.Errorf("could not get path for location \"%s\"", l.Name)
}
func (l Location) Backup() error {