From 5270c05bd68fa8a2ae6600811d993ffcaaeeab08 Mon Sep 17 00:00:00 2001 From: Nathan Perry Date: Tue, 29 Sep 2020 13:39:24 -0400 Subject: fix putin walk --- src/commands/today/mod.rs | 1 + src/commands/today/putin.rs | 2 +- 2 files changed, 2 insertions(+), 1 deletion(-) diff --git a/src/commands/today/mod.rs b/src/commands/today/mod.rs index 6668ac6..21583dd 100644 --- a/src/commands/today/mod.rs +++ b/src/commands/today/mod.rs @@ -74,6 +74,7 @@ lazy_static! { ussr::ussr, france::france, shrek::shrek, + putin::putin, wednesday::wednesday, tomorrow::tomorrow, diff --git a/src/commands/today/putin.rs b/src/commands/today/putin.rs index 790167a..8d40790 100644 --- a/src/commands/today/putin.rs +++ b/src/commands/today/putin.rs @@ -1,6 +1,6 @@ use super::prelude::*; -pub fn shrek(date: chrono::NaiveDateTime) -> TodayIter { +pub fn putin(date: chrono::NaiveDateTime) -> TodayIter { if month_day(date) != (10, 7) { return Box::new(empty()); } -- cgit v1.3.1