[Lldb-commits] [lldb] r231163 - Accidental semicolon in python.

Chaoren Lin chaorenl at google.com
Tue Mar 3 15:14:27 PST 2015


Author: chaoren
Date: Tue Mar  3 17:14:27 2015
New Revision: 231163

URL: http://llvm.org/viewvc/llvm-project?rev=231163&view=rev
Log:
Accidental semicolon in python.

Modified:
    lldb/trunk/test/settings/quoting/TestQuoting.py

Modified: lldb/trunk/test/settings/quoting/TestQuoting.py
URL: http://llvm.org/viewvc/llvm-project/lldb/trunk/test/settings/quoting/TestQuoting.py?rev=231163&r1=231162&r2=231163&view=diff
==============================================================================
--- lldb/trunk/test/settings/quoting/TestQuoting.py (original)
+++ lldb/trunk/test/settings/quoting/TestQuoting.py Tue Mar  3 17:14:27 2015
@@ -71,7 +71,7 @@ class SettingsCommandTestCase(TestBase):
         if lldb.remote_platform:
             src_file_spec = lldb.SBFileSpec('stdout.txt', False)
             dst_file_spec = lldb.SBFileSpec('stdout.txt', True)
-            lldb.remote_platform.Get(src_file_spec, dst_file_spec);
+            lldb.remote_platform.Get(src_file_spec, dst_file_spec)
 
         with open('stdout.txt', 'r') as f:
             output = f.read()





More information about the lldb-commits mailing list