Merge "Use input instead of raw_input in gdbclient.py" am: 445a4c4e19 am: c57fa7f8b5 am: 1f18971cbb

Original change: https://android-review.googlesource.com/c/platform/development/+/1909431

Change-Id: I6177c823e85358100a5d29bd124936731962a56c
This commit is contained in:
Treehugger Robot
2021-12-02 21:20:32 +00:00
committed by Automerger Merge Worker

View File

@@ -397,7 +397,7 @@ def do_main():
lldb-server connection. Press enter in this terminal once debugging is
finished to shut lldb-server down and close all the ports."""))
print("")
raw_input("Press enter to shut down lldb-server")
input("Press enter to shut down lldb-server")
def main():