From 2782d1acf4b3564dd3d28a313b90899eb5e2d1cb Mon Sep 17 00:00:00 2001 From: Luke Robles Date: Tue, 27 Jul 2021 14:22:57 -0700 Subject: [PATCH] updating wording in the corona embed to say covid19 --- app/corona.py | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/app/corona.py b/app/corona.py index 295027c6..72eeeabe 100644 --- a/app/corona.py +++ b/app/corona.py @@ -67,7 +67,7 @@ def sum_numbers(location): deaths = "%s (+%s from yesterday)" % (today_sum['Deaths'], int(today_sum['Deaths']) - int(yesterday_sum['Deaths'])) recovered = "%s (+%s from yesterday)" % (today_sum['Recovered'], int(today_sum['Recovered']) - int(yesterday_sum['Recovered'])) - embed = discord.Embed(description="Most recent Corona stats for %s\nUpdated once a day\n(Last update was %s)" % (location, last_updated), color=0x428bca, type="rich") + embed = discord.Embed(description="Most recent Covid19 stats for %s\nUpdated once a day\n(Last update was %s)" % (location, last_updated), color=0x428bca, type="rich") embed.set_author(name="CSSE at Johns Hopkins University", icon_url='https://www.pngitem.com/pimgs/m/27-270528_johns-hopkins-was-a-founding-member-of-the.png') embed.add_field(name=':rotating_light: Confirmed Cases :rotating_light:', value=confirmed, inline=False) embed.add_field(name=':hospital: Recovered Cases :hospital:', value=recovered, inline=False)