commit | 255b6f84d4dd8cf86a2cef1bd9cb54f325a1839b | [log] [tgz] |
---|---|---|
author | Jon Perritt <jrperritt@gmail.com> | Tue Sep 30 16:07:50 2014 -0500 |
committer | Jon Perritt <jrperritt@gmail.com> | Tue Sep 30 16:07:50 2014 -0500 |
tree | 0aa5f0a8f9305207b3cb45cf308e08ad8ff4ccde | |
parent | de47eac8f27e20037bd178a1d3581c17f93db654 [diff] [blame] |
fix to BuildQueryString; params.go unit tests
diff --git a/params.go b/params.go index f10c2db..c01c9e5 100644 --- a/params.go +++ b/params.go
@@ -94,7 +94,7 @@ } // URL encode the string for safety. - s := url.QueryEscape(strings.Join(optsSlice, "&")) + s := strings.Join(optsSlice, "&") if s != "" { s = "?" + s }