From 32765150b860ecdea74b4494b9531f5bc40252bb Mon Sep 17 00:00:00 2001 From: Ed Bartosh Date: Thu, 2 Jun 2016 13:12:49 +0300 Subject: scripts: python3: rename raw_input to input Renamed raw_input to input as raw_input does not exist in python 3. Signed-off-by: Ed Bartosh Signed-off-by: Richard Purdie --- scripts/oepydevshell-internal.py | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) (limited to 'scripts/oepydevshell-internal.py') diff --git a/scripts/oepydevshell-internal.py b/scripts/oepydevshell-internal.py index f7b2e4e0bf..2566606b50 100755 --- a/scripts/oepydevshell-internal.py +++ b/scripts/oepydevshell-internal.py @@ -67,7 +67,7 @@ try: i = i[4096:] if sys.stdin in ready: echonocbreak(sys.stdin.fileno()) - o = raw_input() + o = input() cbreaknoecho(sys.stdin.fileno()) pty.write(o + "\n") except (IOError, OSError) as e: -- cgit 1.2.3-korg