2
2
mirror of https://github.com/octoleo/restic.git synced 2024-11-17 02:25:12 +00:00

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 "{}"
} }
return "{" + str[1:len(str)-2] + "}" return "{" + str[1:len(str)-1] + "}"
} }