about summary refs log tree commit diff
path: root/users/sterni/mblog/cli.lisp
diff options
context:
space:
mode:
Diffstat (limited to 'users/sterni/mblog/cli.lisp')
-rw-r--r--users/sterni/mblog/cli.lisp5
1 files changed, 3 insertions, 2 deletions
diff --git a/users/sterni/mblog/cli.lisp b/users/sterni/mblog/cli.lisp
index 93be7e8b8e..14c7adda28 100644
--- a/users/sterni/mblog/cli.lisp
+++ b/users/sterni/mblog/cli.lisp
@@ -13,5 +13,6 @@
                               args))))
     (if help-p (format *error-output* "Usage: ~A~%" +synopsis+)
       (loop for arg in args
-            do (apple-note-html-fragment
-                (mime:mime-message (pathname arg)) *standard-output*)))))
+            do (note:apple-note-html-fragment
+                (note:make-apple-note (mime:mime-message (pathname arg)))
+                *standard-output*)))))