diff --git a/plugins/import.lisp b/plugins/import.lisp index 182d842..edf1233 100644 --- a/plugins/import.lisp +++ b/plugins/import.lisp @@ -57,4 +57,4 @@ them into *storage*. The method to parse the file is determined by SERVICE.")) (defmethod import-posts ((service (eql :wordpress)) filepath) (let* ((xml (cxml:parse-file filepath (cxml-dom:make-dom-builder))) (posts (dom:get-elements-by-tag-name xml "item"))) - (loop for post across posts do (import-post :wordpress post)))) + (loop for post across posts do (import-post service post))))