Skip to content

Commit

Permalink
Fix accidentally broken python 3.7 compatibility
Browse files Browse the repository at this point in the history
  • Loading branch information
tulir committed Feb 1, 2022
1 parent 2ba7dbb commit 70445f0
Show file tree
Hide file tree
Showing 3 changed files with 6 additions and 2 deletions.
4 changes: 4 additions & 0 deletions CHANGELOG.md
Original file line number Diff line number Diff line change
@@ -1,3 +1,7 @@
## v0.14.10 (2022-02-01)

* *(bridge)* Fix accidentally broken Python 3.7 compatibility.

## v0.14.9 (2022-02-01)

* *(client.api)* Added `reason` field to `leave_room` and `invite_user` methods.
Expand Down
2 changes: 1 addition & 1 deletion mautrix/__init__.py
Original file line number Diff line number Diff line change
@@ -1,4 +1,4 @@
__version__ = "0.14.9"
__version__ = "0.14.10"
__author__ = "Tulir Asokan <tulir@maunium.net>"
__all__ = [
"api",
Expand Down
2 changes: 1 addition & 1 deletion mautrix/bridge/portal.py
Original file line number Diff line number Diff line change
Expand Up @@ -197,7 +197,7 @@ async def _disappear_event(self, msg: br.AbstractDisappearingMessage) -> None:
if self.mxid != msg.room_id:
self.log.debug(
f"Not redacting expired event {msg.event_id}, "
f"portal room seems to have changed ({self.mxid=!r} != {msg.room_id!r})"
f"portal room seems to have changed ({self.mxid!r} != {msg.room_id!r})"
)
return
try:
Expand Down

0 comments on commit 70445f0

Please sign in to comment.