Skip to content

Commit a318aa4

Browse files
committed
Linting
1 parent d922683 commit a318aa4

File tree

2 files changed

+6
-3
lines changed

2 files changed

+6
-3
lines changed

CHANGELOG.md

Lines changed: 2 additions & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -6,14 +6,15 @@ The format is based on [Keep a Changelog](https://keepachangelog.com/en/1.0.0/).
66
This project mostly adheres to [Semantic Versioning](https://semver.org/spec/v2.0.0.html);
77
however, insignificant breaking changes do not guarantee a major version bump, see the reasoning [here](https://github.com/kyb3r/modmail/issues/319). If you're a plugin developer, note the "BREAKING" section.
88

9-
# v3.7.14-dev2
9+
# v3.7.14-dev3
1010

1111
### Added
1212

1313
- `update_notifications` configuration option to toggle bot autoupdate notifications. ([GH #2896](https://github.com/kyb3r/modmail/issues/2896))
1414
- `?fareply`, anonymously reply with variables.
1515
- `anonymous_snippets` config variable to toggle if snippets should be anonymous. ([GH #2905](https://github.com/kyb3r/modmail/issues/2905))
1616
- `disable_updates` config variable to control if the update command should be disabled or not.
17+
- `silent_alert_on_mention` to alert mods silently. ([GH #2907](https://github.com/kyb3r/modmail/issues/2907))
1718
- Support for only the "Server Members" intent.
1819

1920
### Improved

bot.py

Lines changed: 4 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -1,4 +1,4 @@
1-
__version__ = "3.7.14-dev2"
1+
__version__ = "3.7.14-dev3"
22

33

44
import asyncio
@@ -196,7 +196,9 @@ def run(self, *args, **kwargs):
196196
intents.members = True
197197
# Try again with members intent
198198
self._connection._intents = intents
199-
logger.warning("Attempting to login with only the server members privileged intent. Some plugins might not work correctly.")
199+
logger.warning(
200+
"Attempting to login with only the server members privileged intent. Some plugins might not work correctly."
201+
)
200202
try:
201203
self.loop.run_until_complete(self.start(self.token))
202204
except discord.PrivilegedIntentsRequired:

0 commit comments

Comments
 (0)