Hi jingham,

While fixing exception handling bug in lldbtest.py I somewhat messed up the 
indentation around - addressing this issue here.

http://reviews.llvm.org/D6127

Files:
  test/lldbtest.py
Index: test/lldbtest.py
===================================================================
--- test/lldbtest.py
+++ test/lldbtest.py
@@ -1017,10 +1017,9 @@
             except (ValueError, pexpect.ExceptionPexpect):
                 # child is already terminated
                 pass
-	    finally:
-		# Give it one final blow to make sure the child is terminated.
-		self.child.close()
-
+            finally:
+                # Give it one final blow to make sure the child is terminated.
+                self.child.close()
 
     def tearDown(self):
         """Fixture for unittest test case teardown."""
_______________________________________________
lldb-commits mailing list
[email protected]
http://lists.cs.uiuc.edu/mailman/listinfo/lldb-commits

Reply via email to