Skip to content

Commit

Permalink
fix: typo
Browse files Browse the repository at this point in the history
  • Loading branch information
sumeshi committed Apr 4, 2022
1 parent 6f13a20 commit 49d8c2f
Showing 1 changed file with 1 addition and 1 deletion.
2 changes: 1 addition & 1 deletion src/ntfsdump/models/ImageFile.py
Original file line number Diff line number Diff line change
Expand Up @@ -80,7 +80,7 @@ def __analyze_partitions(self) -> List[NtfsVolume]:
vhdi_file = pyvhdi.file()
vhdi_file.open(str(self.path))
img_info = Img_Info(vhdi_file)
elif self.file_type == ['vmdk', 'VMDK']:
elif self.file_type in ['vmdk', 'VMDK']:
self.logger.log(f"[analyze] VMDK Format Image", 'system')
vmdk_handle = pyvmdk.handle()
vmdk_handle.open(str(self.path))
Expand Down

0 comments on commit 49d8c2f

Please sign in to comment.