diff options
Diffstat (limited to 'pinentry-rofi.scm')
-rwxr-xr-x | pinentry-rofi.scm | 2 |
1 files changed, 1 insertions, 1 deletions
diff --git a/pinentry-rofi.scm b/pinentry-rofi.scm index f5ab3cf..76fc0df 100755 --- a/pinentry-rofi.scm +++ b/pinentry-rofi.scm @@ -338,7 +338,7 @@ Return the input from the user if succeeded else #f." (define (compose-message pinentry) "Create the message by combining the error and desc from PINENTRY" (if (pinentry-error pinentry) - (format #f "~a\n~a" + (format #f "~a ~a" (pinentry-error pinentry) (pinentry-desc pinentry)) (pinentry-desc pinentry))) |