aboutsummaryrefslogtreecommitdiffstats
path: root/bot/exts/utilities/conversationstarters.py
diff options
context:
space:
mode:
authorGravatar ChrisJL <[email protected]>2021-09-05 19:46:37 +0100
committerGravatar GitHub <[email protected]>2021-09-05 19:46:37 +0100
commit8a410f3abd39a1b48c514d32651a50d4bdced492 (patch)
tree17fbb917adec0a1283d3d2456d8b09eee0334371 /bot/exts/utilities/conversationstarters.py
parentMerge pull request #845 from python-discord/Pin-platform-in-Dockerfile (diff)
parentMerge branch 'main' into lance-restructure (diff)
Merge pull request #851 from python-discord/lance-restructure
Restructure Sir Lancebot
Diffstat (limited to '')
-rw-r--r--bot/exts/utilities/conversationstarters.py (renamed from bot/exts/evergreen/conversationstarters.py)6
1 files changed, 3 insertions, 3 deletions
diff --git a/bot/exts/evergreen/conversationstarters.py b/bot/exts/utilities/conversationstarters.py
index fdc4467a..dd537022 100644
--- a/bot/exts/evergreen/conversationstarters.py
+++ b/bot/exts/utilities/conversationstarters.py
@@ -11,10 +11,10 @@ from bot.utils.randomization import RandomCycle
SUGGESTION_FORM = "https://forms.gle/zw6kkJqv8U43Nfjg9"
-with Path("bot/resources/evergreen/starter.yaml").open("r", encoding="utf8") as f:
+with Path("bot/resources/utilities/starter.yaml").open("r", encoding="utf8") as f:
STARTERS = yaml.load(f, Loader=yaml.FullLoader)
-with Path("bot/resources/evergreen/py_topics.yaml").open("r", encoding="utf8") as f:
+with Path("bot/resources/utilities/py_topics.yaml").open("r", encoding="utf8") as f:
# First ID is #python-general and the rest are top to bottom categories of Topical Chat/Help.
PY_TOPICS = yaml.load(f, Loader=yaml.FullLoader)
@@ -33,7 +33,7 @@ TOPICS = {
class ConvoStarters(commands.Cog):
- """Evergreen conversation topics."""
+ """General conversation topics."""
@commands.command()
@whitelist_override(channels=ALL_ALLOWED_CHANNELS)