diff options
| -rw-r--r-- | src/commands/today/mod.rs | 1 | ||||
| -rw-r--r-- | src/commands/today/putin.rs | 2 |
2 files changed, 2 insertions, 1 deletions
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()); } |
