From d48abe3a052d244590ea5bbf3db46ae414826ecb Mon Sep 17 00:00:00 2001 From: Pragmatic Software Date: Thu, 24 Jun 2021 19:17:16 -0700 Subject: [PATCH] Plugins/RemindMe: minor whitespace fix --- Plugins/RemindMe.pm | 3 ++- 1 file changed, 2 insertions(+), 1 deletion(-) diff --git a/Plugins/RemindMe.pm b/Plugins/RemindMe.pm index 7226bba8..91e0fe92 100644 --- a/Plugins/RemindMe.pm +++ b/Plugins/RemindMe.pm @@ -185,7 +185,8 @@ sub cmd_remindme { # add to the reminder text anything left in the arguments if (@opt_args) { - $text .= " @opt_args"; + $text .= ' ' if length $text; + $text .= join ' ', @opt_args; } return "Please use -t to specify a time for this reminder." if not $alarm;