mirror of
https://github.com/volatilityfoundation/volatility3.git
synced 2026-09-10 03:37:39 +02:00
Fix ProducerMetadata class bug introduced in #1369
This commit is contained in:
@@ -27,7 +27,7 @@ class ProducerMetadata(interfaces.symbols.MetadataInterface):
|
||||
@property
|
||||
def version(self) -> Optional[Tuple[int]]:
|
||||
"""Returns the version of the ISF file producer"""
|
||||
version = self.version_string()
|
||||
version = self.version_string
|
||||
if not version:
|
||||
return None
|
||||
if all(x in "0123456789." for x in version):
|
||||
|
||||
Reference in New Issue
Block a user