Merge "services/mgmt: More VEYRON_* --> V23_* environment variable renames."
diff --git a/cmd/mgmt/device/impl.go b/cmd/mgmt/device/impl.go
index 891f7ce..a27bf6c 100644
--- a/cmd/mgmt/device/impl.go
+++ b/cmd/mgmt/device/impl.go
@@ -346,9 +346,9 @@
}
switch s := status.(type) {
case device.StatusInstance:
- fmt.Fprintf(cmd.Stdout(), "Instance [State:%v,Version:%v]", s.Value.State, s.Value.Version)
+ fmt.Fprintf(cmd.Stdout(), "Instance [State:%v,Version:%v]\n", s.Value.State, s.Value.Version)
case device.StatusInstallation:
- fmt.Fprintf(cmd.Stdout(), "Installation [State:%v,Version:%v]", s.Value.State, s.Value.Version)
+ fmt.Fprintf(cmd.Stdout(), "Installation [State:%v,Version:%v]\n", s.Value.State, s.Value.Version)
default:
return fmt.Errorf("Status returned unknown type: %T", s)
}