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 55d6ed9 commit 960b144Copy full SHA for 960b144
vdirsyncer/http.py
@@ -143,8 +143,11 @@ async def request(
143
144
logger.debug(response.status)
145
logger.debug(response.headers)
146
- if (response.status >= 400 and hasattr(response, 'content')
147
- and hasattr(response.content, '_buffer')):
+ if (
+ response.status >= 400
148
+ and hasattr(response, "content")
149
+ and hasattr(response.content, "_buffer")
150
+ ):
151
logger.debug(response.content._buffer)
152
153
if response.status == 412:
0 commit comments