Skip to content

Commit

Permalink
string join
Browse files Browse the repository at this point in the history
  • Loading branch information
danielsz committed Oct 31, 2013
1 parent db56341 commit 58610e0
Showing 1 changed file with 1 addition and 2 deletions.
3 changes: 1 addition & 2 deletions src/bitly.clj
Original file line number Diff line number Diff line change
@@ -1,7 +1,6 @@
(ns bitly
(:require [clj-http.client :as client]
[clj-http.util :as util]
[clojure.contrib.str-utils2 :as s2]
[clojure.data.json :as json]))

(def ^:dynamic *api-user* nil)
Expand All @@ -12,7 +11,7 @@
"Generate query string allowing for duplicate parameters"
(if (map? params)
(client/generate-query-string params)
(s2/join "&"
(clojure.string/join "&"
(loop [params params query nil]
(if params
(let [k (first params)
Expand Down

0 comments on commit 58610e0

Please sign in to comment.