From 209a76eae24712e9770e747e771b4001eef4b533 Mon Sep 17 00:00:00 2001 From: Michael Burns <5170+mburns@users.noreply.github.com> Date: Fri, 14 May 2021 14:31:24 -0700 Subject: [PATCH] [LINT] error strings should not end with punctuation or a newline (ST1005) --- bootstrap_peers.go | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/bootstrap_peers.go b/bootstrap_peers.go index 2771584..e22c55f 100644 --- a/bootstrap_peers.go +++ b/bootstrap_peers.go @@ -37,7 +37,7 @@ func DefaultBootstrapPeers() ([]peer.AddrInfo, error) { ps, err := ParseBootstrapPeers(DefaultBootstrapAddresses) if err != nil { return nil, fmt.Errorf(`failed to parse hardcoded bootstrap peers: %s -This is a problem with the ipfs codebase. Please report it to the dev team.`, err) +This is a problem with the ipfs codebase. Please report it to the dev team`, err) } return ps, nil }