mirror of
https://github.com/volatilityfoundation/volatility3.git
synced 2026-09-06 09:47:38 +02:00
volshell: use repr for none vol objects
This commit is contained in:
@@ -630,7 +630,7 @@ class Volshell(interfaces.plugins.PluginInterface):
|
||||
if value is None:
|
||||
return "N/A"
|
||||
else:
|
||||
return value
|
||||
return repr(value)
|
||||
|
||||
except exceptions.InvalidAddressException:
|
||||
# if value causes an InvalidAddressException like BaseAbsentValue then display N/A
|
||||
|
||||
Reference in New Issue
Block a user