From 48772a08f1c3bb6eee32971316aebe04609a4c04 Mon Sep 17 00:00:00 2001 From: Gregory Bartholomew Date: Jan 01 2022 19:35:30 +0000 Subject: I missed a few lines in the previous PR --- diff --git a/bot/commands.pm b/bot/commands.pm index 6f2cc8f..fef06c0 100644 --- a/bot/commands.pm +++ b/bot/commands.pm @@ -204,14 +204,12 @@ sub show { sub eotw { my $user = shift; my $date = THISWEEK->add('weeks' => 1); - my $stat = '🔸'; return '' unless $user; - return sprintf('#info %s will be editor of the week starting %s%s', + return sprintf('#info %s will be editor of the week starting %s', $user, $date->strftime(FORMAT), - $stat, ); }