diff options
author | Tom Faulhaber <git_net@infolace.com> | 2009-07-06 09:28:59 -0700 |
---|---|---|
committer | Tom Faulhaber <git_net@infolace.com> | 2009-07-06 09:28:59 -0700 |
commit | c493df4c1fa6b0799f43b5d73bc62203c8d69f4e (patch) | |
tree | 0302c1d4e61010787c628b82d62e7b3c1e2b08ea /src/clojure/contrib | |
parent | 0d2919855b1cc18f21e08fb4ee4a8c32445582e0 (diff) | |
parent | c73ef9faa5258ab38cc03e19b00a9df019dd6680 (diff) |
Merge branch 'master' of git@github.com:richhickey/clojure-contrib
Diffstat (limited to 'src/clojure/contrib')
-rw-r--r-- | src/clojure/contrib/http/agent.clj | 2 |
1 files changed, 1 insertions, 1 deletions
diff --git a/src/clojure/contrib/http/agent.clj b/src/clojure/contrib/http/agent.clj index ca201824..d1007475 100644 --- a/src/clojure/contrib/http/agent.clj +++ b/src/clojure/contrib/http/agent.clj @@ -20,7 +20,7 @@ (defn- setup-http-connection [conn options] (.setRequestMethod conn (:method options)) - (.setInstanceFollowRedirects (:follow-redirects options)) + (.setInstanceFollowRedirects conn (:follow-redirects options)) (doseq [[name value] (:headers options)] (.setRequestProperty conn name value))) |