aboutsummaryrefslogtreecommitdiff
path: root/src/clojure/contrib/http/agent.clj
diff options
context:
space:
mode:
Diffstat (limited to 'src/clojure/contrib/http/agent.clj')
-rw-r--r--src/clojure/contrib/http/agent.clj2
1 files changed, 1 insertions, 1 deletions
diff --git a/src/clojure/contrib/http/agent.clj b/src/clojure/contrib/http/agent.clj
index 758a7c0c..ca201824 100644
--- a/src/clojure/contrib/http/agent.clj
+++ b/src/clojure/contrib/http/agent.clj
@@ -26,7 +26,7 @@
(defn- success? [conn]
;; Is the response in the 2xx range?
- (= 2 (unchecked-divide (.getResponseCode conn)) 100))
+ (= 2 (unchecked-divide (.getResponseCode conn) 100)))
(defn- do-http-agent-request [state options]
(let [conn (::connection state)]