From d04bbb3bc08326301bef683dd9619c38c9e166cf Mon Sep 17 00:00:00 2001 From: Brit Butler Date: Sun, 17 Apr 2011 17:41:16 -0400 Subject: [PATCH] Small, obvious cleanup to import-posts. --- plugins/import.lisp | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) 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))))