Skip to content

Commit

Permalink
fix borked import (#67)
Browse files Browse the repository at this point in the history
Signed-off-by: Bradley Reynolds <[email protected]>
  • Loading branch information
shenanigansd authored May 6, 2023
1 parent a3a261b commit b6a3a63
Show file tree
Hide file tree
Showing 3 changed files with 5 additions and 2 deletions.
3 changes: 3 additions & 0 deletions docs/source/changelog.rst
Original file line number Diff line number Diff line change
Expand Up @@ -4,6 +4,9 @@
Changelog
=========

- :release:`2.3.1 <6th May 2023>`
- :bug:`66` Fix invalid import breaking email reporting

- :release:`2.3.0 <5th May 2023>`
- :feature:`18` Log auto-reports

Expand Down
2 changes: 1 addition & 1 deletion pyproject.toml
Original file line number Diff line number Diff line change
@@ -1,6 +1,6 @@
[project]
name = "alessia"
version = "2.3.0"
version = "2.3.1"
dependencies = [
"python-dotenv==1.0.0",
"discord.py==2.2.2",
Expand Down
2 changes: 1 addition & 1 deletion src/bot/exts/dragonfly/dragonfly.py
Original file line number Diff line number Diff line change
Expand Up @@ -81,7 +81,7 @@ async def on_submit(self, interaction: discord.Interaction):
)

log_channel = interaction.client.get_channel(DragonflyConfig.logs_channel_id)
if isinstance(log_channel, discord.abc.MessageableChannel):
if isinstance(log_channel, discord.abc.Messageable):
await log_channel.send(
f"User {interaction.user.mention} "
f"reported package `{self.package.name}` "
Expand Down

0 comments on commit b6a3a63

Please sign in to comment.