Make the interactive command interpreter build into the "crashlog" command work correctly when run inside LLDB. Before this fix the "cmd.Cmd" object was trying to read from stdin itself and it was competing without command interpreter for the bytes.



git-svn-id: https://llvm.org/svn/llvm-project/lldb/trunk@159688 91177308-0d34-0410-b5e6-96231b3b80d8
diff --git a/examples/python/crashlog.py b/examples/python/crashlog.py
index 51b944a..2f53ad4 100755
--- a/examples/python/crashlog.py
+++ b/examples/python/crashlog.py
@@ -370,6 +370,7 @@
     
     def __init__(self, crash_logs):
         cmd.Cmd.__init__(self)
+        self.use_rawinput = False
         self.intro = 'Interactive crashlogs prompt, type "help" to see a list of supported commands.'
         self.crash_logs = crash_logs
         self.prompt = '% '