mirror of
https://git.anonymousland.org/anonymousland/synapse.git
synced 2024-10-01 11:49:51 -04:00
Don't try to use f-strings
Signed-off-by: Jason Robinson <jasonr@matrix.org>
This commit is contained in:
parent
e2c16edc78
commit
b52fb703f7
@ -42,7 +42,7 @@ class EventForwardExtremitiesStore(SQLBaseStore):
|
||||
room_id,
|
||||
)
|
||||
except KeyError:
|
||||
msg = f"No forward extremity event found for room {room_id}"
|
||||
msg = "No forward extremity event found for room %s" % room_id
|
||||
logger.warning(msg)
|
||||
raise SynapseError(400, msg)
|
||||
|
||||
|
Loading…
Reference in New Issue
Block a user