Skip to content

Commit 12109c6

Browse files
committed
Core: Fix up lint issue from pull request
1 parent 441be45 commit 12109c6

File tree

1 file changed

+3
-1
lines changed

1 file changed

+3
-1
lines changed

volatility3/framework/layers/resources.py

Lines changed: 3 additions & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -140,7 +140,9 @@ def open(self, url: str, mode: str = "rb") -> Any:
140140
except error.URLError as excp:
141141
if excp.args:
142142
if isinstance(excp.args[0], ssl.SSLCertVerificationError):
143-
vollog.warning("SSL certificate verification failed: attempting UNVERIFIED retrieval")
143+
vollog.warning(
144+
"SSL certificate verification failed: attempting UNVERIFIED retrieval"
145+
)
144146
non_verifying_ctx = ssl.SSLContext()
145147
non_verifying_ctx.check_hostname = False
146148
non_verifying_ctx.verify_mode = ssl.CERT_NONE

0 commit comments

Comments
 (0)