Commit af0bd711 authored by Tobias Sargeant's avatar Tobias Sargeant Committed by Commit Bot

Fix a trivial typo in grokdump.py

Change-Id: I5977c58d7d39f5f13352234f0d016c47ce9be133
Reviewed-on: https://chromium-review.googlesource.com/1143465Reviewed-by: 's avatarRoss McIlroy <rmcilroy@chromium.org>
Commit-Queue: Tobias Sargeant <tobiasjs@chromium.org>
Cr-Commit-Position: refs/heads/master@{#54562}
parent 00b00201
...@@ -761,7 +761,7 @@ class MinidumpReader(object): ...@@ -761,7 +761,7 @@ class MinidumpReader(object):
def IsValidExceptionStackAddress(self, address): def IsValidExceptionStackAddress(self, address):
if not self.IsValidAddress(address): return False if not self.IsValidAddress(address): return False
return self.isExceptionStackAddress(address) return self.IsExceptionStackAddress(address)
def IsModuleAddress(self, address): def IsModuleAddress(self, address):
return self.GetModuleForAddress(address) != None return self.GetModuleForAddress(address) != None
......
Markdown is supported
0% or
You are about to add 0 people to the discussion. Proceed with caution.
Finish editing this message first!
Please register or to comment