From ae1ad30c7678c34b4c642271880f82ad0ac3865a Mon Sep 17 00:00:00 2001 From: Bruce Cowan <bruce@bcowan.eu> Date: Sat, 27 Jan 2018 10:40:50 +0000 Subject: [PATCH] Add datetime command --- datetime.py | 5 +++++ 1 file changed, 5 insertions(+) diff --git a/datetime.py b/datetime.py index 13274b9..066e599 100644 --- a/datetime.py +++ b/datetime.py @@ -32,6 +32,11 @@ class Datetime(BotPlugin): dt = datetime.now() return dt.strftime(fmt) + @botcmd + def datetime(self, message, args): + """Displays both the date and time in the current locale""" + return "The date and time are {}".format(self._get_date_time('%x %X')) + @botcmd def date(self, message, args): """Displays the current date in the current locale""" -- GitLab