[Lldb-commits] [lldb] 0b08026 - [lldb/crashlog] Run python formatter (nfc)

Med Ismail Bennani via lldb-commits lldb-commits at lists.llvm.org
Thu Jun 1 17:13:25 PDT 2023


Author: Med Ismail Bennani
Date: 2023-06-01T17:13:16-07:00
New Revision: 0b080260541dc7942500092b300aee6901647056

URL: https://github.com/llvm/llvm-project/commit/0b080260541dc7942500092b300aee6901647056
DIFF: https://github.com/llvm/llvm-project/commit/0b080260541dc7942500092b300aee6901647056.diff

LOG: [lldb/crashlog] Run python formatter (nfc)

Signed-off-by: Med Ismail Bennani <ismail at bennani.ma>

Added: 
    

Modified: 
    lldb/examples/python/crashlog.py

Removed: 
    


################################################################################
diff  --git a/lldb/examples/python/crashlog.py b/lldb/examples/python/crashlog.py
index 9978c70d0bfd..8f7bde3429b8 100755
--- a/lldb/examples/python/crashlog.py
+++ b/lldb/examples/python/crashlog.py
@@ -1371,7 +1371,9 @@ def load_crashlog_in_scripted_process(debugger, crash_log_file, options, result)
     if target is None or not target.IsValid():
         arch = crashlog.process_arch
         if not arch:
-            raise InteractiveCrashLogException("couldn't create find the architecture to create the target")
+            raise InteractiveCrashLogException(
+                "couldn't create find the architecture to create the target"
+            )
         target = debugger.CreateTargetWithFileAndArch(None, arch)
     # 4. Fail
     if target is None or not target.IsValid():


        


More information about the lldb-commits mailing list