diff options
Diffstat (limited to 'bot/seasons')
| -rw-r--r-- | bot/seasons/valentines/be_my_valentine.py | 4 |
1 files changed, 2 insertions, 2 deletions
diff --git a/bot/seasons/valentines/be_my_valentine.py b/bot/seasons/valentines/be_my_valentine.py index c6b9e619..163574c3 100644 --- a/bot/seasons/valentines/be_my_valentine.py +++ b/bot/seasons/valentines/be_my_valentine.py @@ -220,14 +220,14 @@ class BeMyValentine: Grabs a random poem. """ valentine_poem = random.choice(self.valentines['valentine_poems']) - return valentine_poem['message'] + return valentine_poem def valentine_compliment(self): """ Grabs a random compliment. """ valentine_compliment = random.choice(self.valentines['valentine_compliments']) - return valentine_compliment['message'] + return valentine_compliment def setup(bot): |