aboutsummaryrefslogtreecommitdiffstats
path: root/bot/exts/utils/extensions.py (follow)
Commit message (Collapse)AuthorAgeLines
* Fix extensions command bot avatar urlGravatar Gustav Odinger2020-09-21-1/+1
| | | | - Uses self.bot (the bot instance) instead of Bot (the bot object) to access avatar url
* Move bot repo URL constant and delete avatar URLGravatar Gustav Odinger2020-09-21-3/+3
| | | | | | | | - Avatar URL can be accessed through bot.user.avatar_url and won't need to be a constant - Bot repo URL fits better under the Client named tuple - URLs class removed, since it was no longer used
* Remove modlog from unload blacklist Gravatar gustavwilliam2020-09-21-1/+1
| | | | | - No modlog exists for SeasonalBot and is therefore redundant Co-authored-by: Dennis Pham <[email protected]>
* Update max_size of paginator Gravatar gustavwilliam2020-09-21-1/+1
| | | | | - Should prevent `RuntimeError: Line exceeds maximum page size 698` Co-authored-by: Dennis Pham <[email protected]>
* Add extensions managment commandGravatar Gustav Odinger2020-09-21-0/+265
- Allows admins and core developes to manage loaded and unloaded extensions (mostly cogs) - Mostly copied from the 'Python' bot, with some tweaks to make it work for SeasonalBot