diff options
| author | Nathan Perry <np@nathanperry.dev> | 2020-09-29 13:39:24 -0400 |
|---|---|---|
| committer | Nathan Perry <np@nathanperry.dev> | 2020-09-29 13:39:24 -0400 |
| commit | 5270c05bd68fa8a2ae6600811d993ffcaaeeab08 (patch) | |
| tree | ec3c7556c208e3e9c38aa0619e1ff51f8927f6bf | |
| parent | 52a31b4842076d9dd1efe060bb13ed77678be69d (diff) | |
fix putin walk
| -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()); } |
