[Lldb-commits] [lldb] r237878 - trivial log print fix
Vince Harron
vince at nethacker.com
Wed May 20 22:57:28 PDT 2015
Author: vharron
Date: Thu May 21 00:57:28 2015
New Revision: 237878
URL: http://llvm.org/viewvc/llvm-project?rev=237878&view=rev
Log:
trivial log print fix
Modified:
lldb/trunk/test/dotest.py
Modified: lldb/trunk/test/dotest.py
URL: http://llvm.org/viewvc/llvm-project/lldb/trunk/test/dotest.py?rev=237878&r1=237877&r2=237878&view=diff
==============================================================================
--- lldb/trunk/test/dotest.py (original)
+++ lldb/trunk/test/dotest.py Thu May 21 00:57:28 2015
@@ -951,7 +951,7 @@ def setupSysPath():
lldbtest_config.lldbExec = which('lldb')
if lldbtest_config.lldbExec and not is_exe(lldbtest_config.lldbExec):
- print "'{}' is not a path to a valid executable"
+ print "'{}' is not a path to a valid executable".format(lldbtest_config.lldbExec)
del lldbtest_config.lldbExec
if not lldbtest_config.lldbExec:
More information about the lldb-commits
mailing list