We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
There was an error while loading. Please reload this page.
1 parent 3017744 commit c0317a0Copy full SHA for c0317a0
vdirsyncer/http.py
@@ -147,8 +147,11 @@ async def request(
147
148
logger.debug(response.status)
149
logger.debug(response.headers)
150
- if (response.status >= 400 and hasattr(response, 'content')
151
- and hasattr(response.content, '_buffer')):
+ if (
+ response.status >= 400
152
+ and hasattr(response, "content")
153
+ and hasattr(response.content, "_buffer")
154
+ ):
155
logger.debug(response.content._buffer)
156
157
if response.status == 412:
0 commit comments