summaryrefslogtreecommitdiffstats
path: root/http/client/client.go
diff options
context:
space:
mode:
Diffstat (limited to 'http/client/client.go')
-rw-r--r--http/client/client.go3
1 files changed, 2 insertions, 1 deletions
diff --git a/http/client/client.go b/http/client/client.go
index b57308d..adf6d44 100644
--- a/http/client/client.go
+++ b/http/client/client.go
@@ -26,6 +26,7 @@ func Get(url string) (*http.Response, error) {
// Add default headers for the peach http client.
func buildHeaders(req *http.Request) *http.Request {
- req.Header.Set("User-Agent", "peach/"+version.Version+" ricketyspace.net/contact")
+ req.Header.Set("User-Agent", "peach/"+version.Version+
+ " ricketyspace.net/contact")
return req
}