From 76f7e5d6da574f62d02c4299447f5fd7bff6de23 Mon Sep 17 00:00:00 2001 From: Storm Dragon Date: Wed, 2 Oct 2019 13:47:52 -0400 Subject: [PATCH] Fixed minor spacing bug for not found notes. --- notestorm | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/notestorm b/notestorm index 2683649..decf65e 100755 --- a/notestorm +++ b/notestorm @@ -155,7 +155,7 @@ display_note() { mapfile -t notes < <(find "$xdgPath/notestorm/notes" -type f -iname '*.md') if [[ $1 -ge "${#notes[@]}" ]]; then gettext "The requested note could not be found. Try using -l to get a list." - echo "($1)" + echo " ($1)" exit 1 fi cat "${notes[1]}"