mirror of
https://github.com/python/cpython.git
synced 2025-08-04 17:08:35 +00:00
Issue 27921: Remove backslash from another f-string.
This commit is contained in:
parent
6a4efce7a5
commit
6e025608a2
1 changed files with 1 additions and 1 deletions
|
@ -1060,7 +1060,7 @@ class HTTPConnection:
|
|||
|
||||
if encode_chunked and self._http_vsn == 11:
|
||||
# chunked encoding
|
||||
chunk = f'{len(chunk):X}\r\n'.encode('ascii') + chunk \
|
||||
chunk = f'{len(chunk):X}''\r\n'.encode('ascii') + chunk \
|
||||
+ b'\r\n'
|
||||
self.send(chunk)
|
||||
|
||||
|
|
Loading…
Add table
Add a link
Reference in a new issue