Skip to content

Commit 1484782

Browse files
authored
Update client.py
1 parent 3d8c39f commit 1484782

File tree

1 file changed

+2
-1
lines changed

1 file changed

+2
-1
lines changed

Lib/http/client.py

Lines changed: 2 additions & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -1040,7 +1040,8 @@ def close(self, shutdown=False):
10401040
except OSError as e:
10411041
print(f"Response close error: {e}", file=sys.stderr)
10421042
except Exception as e:
1043-
print(f"Unexpected error during response close: {e}", file=sys.stderr)
1043+
print(f"Unexpected error during response close: {e}", file=sys.stderr)
1044+
10441045
def send(self, data):
10451046
"""Send 'data' to the server.
10461047
``data`` can be a string object, a bytes object, an array object, a

0 commit comments

Comments
 (0)