Skip to content

Commit

Permalink
fix macinfo.ReadPlist() function deserialize bug
Browse files Browse the repository at this point in the history
  • Loading branch information
ydkhatri committed Jul 16, 2021
1 parent 7562151 commit a3a6179
Showing 1 changed file with 1 addition and 1 deletion.
2 changes: 1 addition & 1 deletion plugins/helpers/macinfo.py
Original file line number Diff line number Diff line change
Expand Up @@ -512,7 +512,7 @@ def ReadPlist(self, path, deserialize=False):
f = self.Open(path)
if f != None:
log.debug("Trying to read plist file : " + path)
return CommonFunctions.ReadPlist(f)
return CommonFunctions.ReadPlist(f, deserialize)
else:
error = 'Failed to open file'
except OSError as ex:
Expand Down

0 comments on commit a3a6179

Please sign in to comment.