Fix IDSet.String()

This commit is contained in:
Alexander Neumann 2015-11-01 22:14:44 +01:00
parent 50c2f2e87f
commit 181963ba08

View File

@ -66,5 +66,5 @@ func (s IDSet) String() string {
return "{}"
}
return "{" + str[1:len(str)-2] + "}"
return "{" + str[1:len(str)-1] + "}"
}