From 23ce35dffe6b8b1fc6e5fd418db6a63922b20c86 Mon Sep 17 00:00:00 2001 From: Nathan Perry Date: Sat, 26 Sep 2020 16:02:31 -0400 Subject: switch to datetime --- src/commands/today/halloween.rs | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) (limited to 'src/commands/today/halloween.rs') diff --git a/src/commands/today/halloween.rs b/src/commands/today/halloween.rs index 847da8e..3fb1c18 100644 --- a/src/commands/today/halloween.rs +++ b/src/commands/today/halloween.rs @@ -9,7 +9,7 @@ lazy_static! { ]; } -pub fn halloween(date: chrono::NaiveDate) -> TodayIter { +pub fn halloween(date: chrono::NaiveDateTime) -> TodayIter { if (10, 31) != month_day(date) { return Box::new(empty()); } -- cgit v1.3.1