diff options
Diffstat (limited to 'bot/exts/utilities')
| -rw-r--r-- | bot/exts/utilities/cheatsheet.py | 6 | ||||
| -rw-r--r-- | bot/exts/utilities/logging.py | 2 | ||||
| -rw-r--r-- | bot/exts/utilities/wtf_python.py | 6 |
3 files changed, 7 insertions, 7 deletions
diff --git a/bot/exts/utilities/cheatsheet.py b/bot/exts/utilities/cheatsheet.py index d7eb4917..48956de3 100644 --- a/bot/exts/utilities/cheatsheet.py +++ b/bot/exts/utilities/cheatsheet.py @@ -17,9 +17,9 @@ Unknown cheat sheet. Please try to reformulate your query. **Examples**: ```md -{constants.Client.prefix}cht read json -{constants.Client.prefix}cht hello world -{constants.Client.prefix}cht lambda +{constants.Bot.prefix}cht read json +{constants.Bot.prefix}cht hello world +{constants.Bot.prefix}cht lambda ``` If the problem persists send a message in <#{Channels.dev_contrib}> """ diff --git a/bot/exts/utilities/logging.py b/bot/exts/utilities/logging.py index 00febc2c..7f520522 100644 --- a/bot/exts/utilities/logging.py +++ b/bot/exts/utilities/logging.py @@ -23,7 +23,7 @@ class Logging(Cog): async def check_channels(self) -> None: """Verifies that all channel constants refer to channels which exist.""" - if constants.Client.debug: + if constants.Bot.debug: log.info("Skipping Channels Check.") return diff --git a/bot/exts/utilities/wtf_python.py b/bot/exts/utilities/wtf_python.py index 0c0375cb..f5db7a96 100644 --- a/bot/exts/utilities/wtf_python.py +++ b/bot/exts/utilities/wtf_python.py @@ -21,9 +21,9 @@ Unknown WTF Python Query. Please try to reformulate your query. **Examples**: ```md -{constants.Client.prefix}wtf wild imports -{constants.Client.prefix}wtf subclass -{constants.Client.prefix}wtf del +{constants.Bot.prefix}wtf wild imports +{constants.Bot.prefix}wtf subclass +{constants.Bot.prefix}wtf del ``` If the problem persists send a message in <#{constants.Channels.dev_contrib}> """ |