Commit 450002a5 authored by markturansky's avatar markturansky

Fixed formatting of error message

parent e5846292
...@@ -126,7 +126,7 @@ func makeMountArgs(source, target, fstype string, options []string) []string { ...@@ -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 {
......
Markdown is supported
0% or
You are about to add 0 people to the discussion. Proceed with caution.
Finish editing this message first!
Please register or to comment