diff options
Diffstat (limited to 'src/option.lisp')
-rw-r--r-- | src/option.lisp | 4 |
1 files changed, 2 insertions, 2 deletions
diff --git a/src/option.lisp b/src/option.lisp index 5a1444c..2ffaa97 100644 --- a/src/option.lisp +++ b/src/option.lisp @@ -113,12 +113,12 @@ with code `exit-code`." ;; If `sendmail` is given, `email-to` must be defined. (when (not (null (getf options :sendmail))) (when (null (getf options :email-to)) - (format *error-output* "error: `--sendmail' requires `--email-to'") + (format *error-output* "error: `--sendmail' requires `--email-to'~%") (opts:exit sysexits:+usage+))) ;; Error if JQL is empty (when (null free-args) - (format *error-output* "error: missing JQL") + (format *error-output* "error: missing JQL~%") (opts:exit sysexits:+usage+)) |