[Lldb-commits] [PATCH] D57467: Fix use of non-existing variable in crashlog.py
Shafik Yaghmour via Phabricator via lldb-commits
lldb-commits at lists.llvm.org
Thu Jan 31 09:57:09 PST 2019
This revision was automatically updated to reflect the committed changes.
Closed by commit rLLDB352772: Fix use of non-existing variable in crashlog.py (authored by shafik, committed by ).
Repository:
rLLDB LLDB
CHANGES SINCE LAST ACTION
https://reviews.llvm.org/D57467/new/
https://reviews.llvm.org/D57467
Files:
examples/python/crashlog.py
Index: examples/python/crashlog.py
===================================================================
--- examples/python/crashlog.py
+++ examples/python/crashlog.py
@@ -260,7 +260,7 @@
if not self.resolved_path:
self.unavailable = True
print("error\n error: unable to locate '%s' with UUID %s"
- % (self.path, uuid_str))
+ % (self.path, self.get_normalized_uuid_string()))
return False
def locate_module_and_debug_symbols(self):
-------------- next part --------------
A non-text attachment was scrubbed...
Name: D57467.184534.patch
Type: text/x-patch
Size: 551 bytes
Desc: not available
URL: <http://lists.llvm.org/pipermail/lldb-commits/attachments/20190131/9e86874b/attachment.bin>
More information about the lldb-commits
mailing list