3
0
mirror of https://github.com/pragma-/pbot.git synced 2024-11-26 13:59:47 +01:00

Plugins/RemindMe: minor whitespace fix

This commit is contained in:
Pragmatic Software 2021-06-24 19:17:16 -07:00
parent 85b5ddf272
commit d48abe3a05

View File

@ -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;