Merge pull request #10092 from markturansky/unmount_error_msg

Fixed formatting of unmount error message
This commit is contained in:
Satnam Singh 2015-06-19 09:39:01 -07:00
commit 3839636cc5

View File

@ -126,7 +126,7 @@ func makeMountArgs(source, target, fstype string, options []string) []string {
// Unmount unmounts the target. // Unmount unmounts the target.
func (mounter *Mounter) Unmount(target string) error { func (mounter *Mounter) Unmount(target string) error {
glog.V(5).Infof("Unmounting %s %v") glog.V(5).Infof("Unmounting %s", target)
command := exec.Command("umount", target) command := exec.Command("umount", target)
output, err := command.CombinedOutput() output, err := command.CombinedOutput()
if err != nil { if err != nil {