diff options
author | Chouser <chouser@n01se.net> | 2008-10-19 04:29:42 +0000 |
---|---|---|
committer | Chouser <chouser@n01se.net> | 2008-10-19 04:29:42 +0000 |
commit | ff77068503bd27c5c0225bd7b6317a372f7de6d6 (patch) | |
tree | 157488f274a272f51aa85d4f2e42a84724c9dcac | |
parent | fb6e1607ca7741a2109c372cb01ae65d99fde3f7 (diff) |
Update lazy-xml to use (load) instead of (load-resources)
-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))) |