From d556d8cb901ee5c9a863ce86a007a5361b3dde92 Mon Sep 17 00:00:00 2001 From: khuxkm fbexl Date: Tue, 15 Jun 2021 01:22:12 +0000 Subject: [PATCH] Fix broken f-string --- commands/water.py | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/commands/water.py b/commands/water.py index b218157..47dd33b 100644 --- a/commands/water.py +++ b/commands/water.py @@ -17,7 +17,7 @@ def cmd_water(bot,channel,nick,user=None): if water(user): bot.say(channel,f"Watered {user}'s plant!") else: - bot.say(channel,"Unable to water {user}'s plant; are you sure they have one?") + bot.say(channel,f"Unable to water {user}'s plant; are you sure they have one?") else: if water(nick): bot.say(channel,f"Watered {nick}'s plant!")