Formatting nit: remove brackets

This commit is contained in:
Sean Chittenden 2016-06-10 01:25:47 -04:00
parent 1371ef85f5
commit 974c9927c7
No known key found for this signature in database
GPG Key ID: 4EBC9DC16C2E5E16
1 changed files with 1 additions and 1 deletions

View File

@ -281,7 +281,7 @@ func (l *serverList) shuffleServers() {
// String returns a string representation of serverList
func (l *serverList) String() string {
if len(l.L) == 0 {
return fmt.Sprintf("[empty server list]")
return fmt.Sprintf("empty server list")
}
serverStrs := make([]string, 0, len(l.L))