Skip to content

Commit a894083

Browse files
c-style strings work with format strings as well
1 parent 4424531 commit a894083

File tree

1 file changed

+1
-1
lines changed

1 file changed

+1
-1
lines changed

src/replit_river/v2/session.py

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -316,7 +316,7 @@ async def websocket_closed_callback() -> None:
316316
raise RiverException(
317317
ERROR_HANDSHAKE,
318318
f"Handshake failed with code {handshake_response.status.code}: " # noqa: E501
319-
+ f"{handshake_response.status.reason}",
319+
f"{handshake_response.status.reason}",
320320
)
321321

322322
last_error = None

0 commit comments

Comments
 (0)