[Lldb-commits] [lldb] r197860 - Add a new-line
Enrico Granata
egranata at apple.com
Sat Dec 21 00:24:29 PST 2013
Author: enrico
Date: Sat Dec 21 02:24:28 2013
New Revision: 197860
URL: http://llvm.org/viewvc/llvm-project?rev=197860&view=rev
Log:
Add a new-line
Modified:
lldb/trunk/source/Interpreter/embedded_interpreter.py
Modified: lldb/trunk/source/Interpreter/embedded_interpreter.py
URL: http://llvm.org/viewvc/llvm-project/lldb/trunk/source/Interpreter/embedded_interpreter.py?rev=197860&r1=197859&r2=197860&view=diff
==============================================================================
--- lldb/trunk/source/Interpreter/embedded_interpreter.py (original)
+++ lldb/trunk/source/Interpreter/embedded_interpreter.py Sat Dec 21 02:24:28 2013
@@ -88,7 +88,7 @@ class SimpleREPL(code.InteractiveConsole
line = self.process_input (input)
more = self.push(line)
if more:
- self.write ("Input not a complete line.")
+ self.write ("Input not a complete line.\n")
self.resetbuffer()
more = 0
More information about the lldb-commits
mailing list