diff options
Diffstat (limited to 'src/clojure/contrib/lazy_xml/lazy_xml.clj')
-rw-r--r-- | src/clojure/contrib/lazy_xml/lazy_xml.clj | 4 |
1 files changed, 2 insertions, 2 deletions
diff --git a/src/clojure/contrib/lazy_xml/lazy_xml.clj b/src/clojure/contrib/lazy_xml/lazy_xml.clj index 4d150034..90b7c02b 100644 --- a/src/clojure/contrib/lazy_xml/lazy_xml.clj +++ b/src/clojure/contrib/lazy_xml/lazy_xml.clj @@ -13,8 +13,8 @@ ; http://www.extreme.indiana.edu/xgws/xsoap/xpp/ (def has-pull false) (defn- parse-seq-pull [& _]) -(try (load-resources "with_pull.clj") - (catch ClassNotFoundException e)) +(try (load "with_pull.clj") + (catch Exception e)) (defn startparse-sax [s ch] (.. SAXParserFactory newInstance newSAXParser (parse s ch))) |