diff options
author | 2020-05-28 08:23:14 +0300 | |
---|---|---|
committer | 2020-05-28 08:23:14 +0300 | |
commit | e321a25c05875e82073470429708b37849947b16 (patch) | |
tree | d9729c0f4b84ddccfe47ac0dc88666ef2a0e3fc2 /pydis_site/apps/api/models | |
parent | (Off-topic Channel Names Viewset Tests): Added test for handling running out ... (diff) |
OT: Replace help text of `used` field
Co-authored-by: Leon Sandøy <[email protected]>
Diffstat (limited to 'pydis_site/apps/api/models')
-rw-r--r-- | pydis_site/apps/api/models/bot/off_topic_channel_name.py | 2 |
1 files changed, 1 insertions, 1 deletions
diff --git a/pydis_site/apps/api/models/bot/off_topic_channel_name.py b/pydis_site/apps/api/models/bot/off_topic_channel_name.py index 3345754d..413cbfae 100644 --- a/pydis_site/apps/api/models/bot/off_topic_channel_name.py +++ b/pydis_site/apps/api/models/bot/off_topic_channel_name.py @@ -18,7 +18,7 @@ class OffTopicChannelName(ModelReprMixin, models.Model): used = models.BooleanField( default=False, - help_text="Show is channel already used as channel name in this round." + help_text="Whether or not this name has already been used during this rotation", ) def __str__(self): |