From 181963ba0826e8ee28684fc861eb8fcbf66ca71f Mon Sep 17 00:00:00 2001 From: Alexander Neumann Date: Sun, 1 Nov 2015 22:14:44 +0100 Subject: [PATCH] Fix IDSet.String() --- backend/idset.go | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/backend/idset.go b/backend/idset.go index 817f80ff..b34a69af 100644 --- a/backend/idset.go +++ b/backend/idset.go @@ -66,5 +66,5 @@ func (s IDSet) String() string { return "{}" } - return "{" + str[1:len(str)-2] + "}" + return "{" + str[1:len(str)-1] + "}" }