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 95c468c commit a497216Copy full SHA for a497216
volatility3/framework/plugins/windows/registry/printkey.py
@@ -154,7 +154,9 @@ def _printkey_iterator(
154
key_node_name = renderers.UnreadableValue()
155
156
# if the item is a subkey, use the LastWriteTime of that subkey
157
- last_write_time = conversion.wintime_to_datetime(node.LastWriteTime.QuadPart)
+ last_write_time = conversion.wintime_to_datetime(
158
+ node.LastWriteTime.QuadPart
159
+ )
160
161
yield (
162
depth,
0 commit comments