From 6f9383666fd81b75570419a2612c86cf263bbbec Mon Sep 17 00:00:00 2001 From: jesopo Date: Mon, 6 May 2019 09:05:31 +0100 Subject: [PATCH] Make birthdays more exciting --- modules/birthday.py | 4 ++-- 1 file changed, 2 insertions(+), 2 deletions(-) diff --git a/modules/birthday.py b/modules/birthday.py index d789458c..226baec2 100644 --- a/modules/birthday.py +++ b/modules/birthday.py @@ -47,8 +47,8 @@ class Module(ModuleManager.BaseModule): event["stdout"].write("%s is %d in %d days" % ( target_user.nickname, age, days)) else: - event["stdout"].write("%s is %d today!" % (target_user.nickname, - age)) + event["stdout"].write("%s is %d today! 🎉" % ( + target_user.nickname, age)) else: event["stderr"].write("No birthday set for %s" % target_user.nickname)