summaryrefslogtreecommitdiff
path: root/human.go
diff options
context:
space:
mode:
authorJeff Carr <[email protected]>2024-11-01 08:45:52 -0500
committerJeff Carr <[email protected]>2024-11-01 08:45:52 -0500
commit1a72fdceef64e6cba22db71e3383e85a112862dc (patch)
tree8b67f1ac3e9c90ff9ee5cc96f3c91f3021873c22 /human.go
parentf36c19f04ff4eb2cf0ad23ff557903f952ca9719 (diff)
set preferred hypervisor
Signed-off-by: Jeff Carr <[email protected]>
Diffstat (limited to 'human.go')
-rw-r--r--human.go3
1 files changed, 1 insertions, 2 deletions
diff --git a/human.go b/human.go
index f9c5af4..1f7cdcf 100644
--- a/human.go
+++ b/human.go
@@ -110,11 +110,10 @@ func FormatDuration(d time.Duration) string {
}
func (d *Droplet) SprintHeader() string {
- header := fmt.Sprintf("%-3.3s %-9.9s %-20.20s", d.Current.State, d.Current.Hypervisor, d.Hostname)
-
if d.Current == nil {
d.Current = new(Current)
}
+ header := fmt.Sprintf("%-3.3s %-9.9s %-20.20s", d.Current.State, d.Current.Hypervisor, d.Hostname)
switch d.Current.State {
case DropletState_ON: