Skip to content

Commit 1cb00f4

Browse files
committed
fix: 잘못된 코드 수정
1 parent bb1efad commit 1cb00f4

1 file changed

Lines changed: 1 addition & 1 deletion

File tree

src/httpc/_client.py

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -228,7 +228,7 @@ def send(
228228
logger.warning(f"Attempting fetch again ({type(exc).__name__})...")
229229
exceptions.append(exc)
230230
else:
231-
if not exceptions:
231+
if exceptions:
232232
logger.warning(f'Successfully retrieve "{request.url}"')
233233
return Response.from_httpx(response)
234234

0 commit comments

Comments
 (0)