From 0a1eb5d79fbb58df0f75f6eb11125325636cfb46 Mon Sep 17 00:00:00 2001 From: Carlos Derich Date: Wed, 27 Jan 2016 01:10:55 -0300 Subject: [PATCH] fix ls command with wrong header values fixes #2937 Signed-off-by: Carlos Derich --- commands/ls.go | 6 +++--- 1 file changed, 3 insertions(+), 3 deletions(-) diff --git a/commands/ls.go b/commands/ls.go index f548f179..85ca1e94 100644 --- a/commands/ls.go +++ b/commands/ls.go @@ -37,9 +37,9 @@ var ( headers = map[string]string{ "Name": "NAME", "Active": "ACTIVE", - "ActiveHost": "DRIVER", - "ActiveSwarm": "STATE", - "DriverName": "URL", + "ActiveHost": "ACTIVE_HOST", + "ActiveSwarm": "ACTIVE_SWARM", + "DriverName": "DRIVER", "State": "STATE", "URL": "URL", "SwarmOptions": "SWARM_OPTIONS",