Merge "Use input instead of raw_input in gdbclient.py"

This commit is contained in:
Treehugger Robot
2021-12-02 20:25:07 +00:00
committed by Gerrit Code Review

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():