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 9cc73b6 commit fcaba2dCopy full SHA for fcaba2d
volatility3/framework/layers/registry.py
@@ -174,7 +174,10 @@ def get_key(
174
root_node = self.get_node(self.root_cell_offset)
175
if not root_node.vol.type_name.endswith(constants.BANG + "_CM_KEY_NODE"):
176
raise RegistryFormatException(
177
- self.name, "Encountered {} instead of _CM_KEY_NODE".format(root_node.vol.type_name)
+ self.name,
178
+ "Encountered {} instead of _CM_KEY_NODE".format(
179
+ root_node.vol.type_name
180
+ ),
181
)
182
node_key = [root_node]
183
if key.endswith("\\"):
0 commit comments