Fix buildbots after https://reviews.llvm.org/D119797
authorGreg Clayton <gclayton@fb.com>
Fri, 18 Feb 2022 07:59:15 +0000 (23:59 -0800)
committerGreg Clayton <gclayton@fb.com>
Fri, 18 Feb 2022 07:59:15 +0000 (23:59 -0800)
This value error is no longer needed with the new version of the patch

lldb/packages/Python/lldbsuite/test/tools/lldb-vscode/vscode.py

index ae919fc..faa0b93 100644 (file)
@@ -228,9 +228,9 @@ class DebugCommunication(object):
                 # 'stopped' event. We need to remember the thread stop
                 # reasons since the 'threads' command doesn't return
                 # that information.
-                if not self.configuration_done_sent:
-                    raise ValueError("'stopped' event received before "
-                                     "configuationDone packet was sent")
+                if not self.configuration_done_sent:
+                    raise ValueError("'stopped' event received before "
+                                     "configuationDone packet was sent")
                 self._process_stopped()
                 tid = body['threadId']
                 self.thread_stop_reasons[tid] = body