diff options
author | 2021-11-28 11:16:09 +0000 | |
---|---|---|
committer | 2021-11-28 11:16:09 +0000 | |
commit | 1af289d5dac0b14cef4312bbb32d5a395afe1007 (patch) | |
tree | 41e2007a4912d4543c6fbc1c3b5a45770b10dd04 | |
parent | Merge branch 'python-discord:main' into patreon (diff) |
Fix string quotes
-rw-r--r-- | bot/exts/info/patreon.py | 11 |
1 files changed, 6 insertions, 5 deletions
diff --git a/bot/exts/info/patreon.py b/bot/exts/info/patreon.py index 1fd233e40..9a61885a4 100644 --- a/bot/exts/info/patreon.py +++ b/bot/exts/info/patreon.py @@ -91,10 +91,11 @@ class Patreon(commands.Cog): embed_patron_info = discord.Embed( title="Patreon Supporters", description=( - "Here is a full list of this months Python Discord patrons!\n\nWe use the money from Patreon to offer " - "excellent prizes for all of our events. Prizes like t-shirts, stickers, microcontrollers that support " - "CircuitPython, or maybe even a mechanical keyboard.\n\nYou can read more about how Patreon supports " - "us, or even support us yourself, on our Patreon page [here](https://pydis.com/patreon)!" + "We use the money from Patreon to offer excellent prizes for all of our events. Prizes like t-shirts, " + "stickers, microcontrollers that support CircuitPython, or maybe even a mechanical keyboard.\n\n" + + "You can read more about how Patreon supports us, or even support us yourself, on our Patreon page " + "[here](https://pydis.com/patreon)!" ) ) @@ -150,7 +151,7 @@ class Patreon(commands.Cog): "We use the money from Patreon to offer excellent prizes for all of our events. Prizes like t-shirts, " "stickers, microcontrollers that support CircuitPython, or maybe even a mechanical keyboard.\n\n" - "You can" read more about how Patreon supports us, or even support us yourself, on our Patreon page " + "You can read more about how Patreon supports us, or even support us yourself, on our Patreon page " "[here](https://pydis.com/patreon)!" ) )) |