From 50f1409b315ac503ff80a119fe9a7e197ab1d6b7 Mon Sep 17 00:00:00 2001 From: Slawomir Skowron Date: Thu, 19 Jan 2017 00:52:10 +0100 Subject: [PATCH] Revert "test for disable tag sorting" This reverts commit 6623b4b94a11f8e596c3bec5b351dacc725e48ee. --- internal/config/config.go | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/internal/config/config.go b/internal/config/config.go index 92a41870db412..24dec4169bfc9 100644 --- a/internal/config/config.go +++ b/internal/config/config.go @@ -168,7 +168,7 @@ func (c *Config) ListTags() string { tags = append(tags, fmt.Sprintf("%s=%s", k, v)) } - //sort.Strings(tags) + sort.Strings(tags) return strings.Join(tags, " ") }