Skip to content

Commit 749a0f9

Browse files
committed
Core: Fix up ISFinfo looking for fastjsonschema
1 parent d07d310 commit 749a0f9

File tree

1 file changed

+1
-1
lines changed

1 file changed

+1
-1
lines changed

volatility3/framework/plugins/isfinfo.py

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -97,7 +97,7 @@ def _generator(self):
9797
if filter_item in isf_file:
9898
filtered_list.append(isf_file)
9999

100-
if find_spec("fastjsonschema") and self.config["validate"]:
100+
if find_spec("jsonschema") and self.config["validate"]:
101101

102102
def check_valid(data):
103103
return "True" if schemas.validate(data, True) else "False"

0 commit comments

Comments
 (0)