aboutsummaryrefslogtreecommitdiff
path: root/src/clojure/contrib/lazy_xml.clj
diff options
context:
space:
mode:
authorChouser <chouser@n01se.net>2009-02-22 01:16:40 +0000
committerChouser <chouser@n01se.net>2009-02-22 01:16:40 +0000
commit8cd98884452912454d297f217e0840d84553c49c (patch)
tree0803a218a96961123f6baac31181a8084f592c74 /src/clojure/contrib/lazy_xml.clj
parent46a05fd000b4123fae3a9a4b2762f73908e52409 (diff)
lazy-xml: update for lazier Clojure
Diffstat (limited to 'src/clojure/contrib/lazy_xml.clj')
-rw-r--r--src/clojure/contrib/lazy_xml.clj3
1 files changed, 2 insertions, 1 deletions
diff --git a/src/clojure/contrib/lazy_xml.clj b/src/clojure/contrib/lazy_xml.clj
index f8b07fe0..f309e5f6 100644
--- a/src/clojure/contrib/lazy_xml.clj
+++ b/src/clojure/contrib/lazy_xml.clj
@@ -22,7 +22,8 @@
; http://www.extreme.indiana.edu/xgws/xsoap/xpp/
(def has-pull false)
(defn- parse-seq-pull [& _])
-(try (load "lazy_xml/with_pull")
+(try
+ (load "lazy_xml/with_pull")
(catch Exception e
(when-not (re-find #"XmlPullParser" (str e))
(throw e))))