Issue 27921: Remove backslash from another f-string.
This commit is contained in:
parent
6a4efce7a5
commit
6e025608a2
|
@ -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…
Reference in New Issue