diff options
author | Ed Bartosh <ed.bartosh@linux.intel.com> | 2016-06-02 13:12:49 +0300 |
---|---|---|
committer | Richard Purdie <richard.purdie@linuxfoundation.org> | 2016-06-03 13:13:29 +0100 |
commit | 793b83a3c6b5853d220214642191b11e4bba9f68 (patch) | |
tree | ea7f57b2eb7f5a1be3d1a2165d6b78c94af8d1d9 /scripts | |
parent | 90e7feeb6485fe695ae26e03b10c23c8296607e9 (diff) | |
download | poky-793b83a3c6b5853d220214642191b11e4bba9f68.tar.gz |
scripts: python3: rename raw_input to input
Renamed raw_input to input as raw_input does not
exist in python 3.
(From OE-Core rev: 32765150b860ecdea74b4494b9531f5bc40252bb)
Signed-off-by: Ed Bartosh <ed.bartosh@linux.intel.com>
Signed-off-by: Richard Purdie <richard.purdie@linuxfoundation.org>
Diffstat (limited to 'scripts')
-rwxr-xr-x | scripts/oepydevshell-internal.py | 2 | ||||
-rwxr-xr-x | scripts/send-error-report | 6 |
2 files changed, 4 insertions, 4 deletions
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: | |||
67 | i = i[4096:] | 67 | i = i[4096:] |
68 | if sys.stdin in ready: | 68 | if sys.stdin in ready: |
69 | echonocbreak(sys.stdin.fileno()) | 69 | echonocbreak(sys.stdin.fileno()) |
70 | o = raw_input() | 70 | o = input() |
71 | cbreaknoecho(sys.stdin.fileno()) | 71 | cbreaknoecho(sys.stdin.fileno()) |
72 | pty.write(o + "\n") | 72 | pty.write(o + "\n") |
73 | except (IOError, OSError) as e: | 73 | except (IOError, OSError) as e: |
diff --git a/scripts/send-error-report b/scripts/send-error-report index a9f6e42d17..122ce32e52 100755 --- a/scripts/send-error-report +++ b/scripts/send-error-report | |||
@@ -44,12 +44,12 @@ def getPayloadLimit(url): | |||
44 | 44 | ||
45 | def ask_for_contactdetails(): | 45 | def ask_for_contactdetails(): |
46 | print("Please enter your name and your email (optionally), they'll be saved in the file you send.") | 46 | print("Please enter your name and your email (optionally), they'll be saved in the file you send.") |
47 | username = raw_input("Name (required): ") | 47 | username = input("Name (required): ") |
48 | email = raw_input("E-mail (not required): ") | 48 | email = input("E-mail (not required): ") |
49 | return username, email | 49 | return username, email |
50 | 50 | ||
51 | def edit_content(json_file_path): | 51 | def edit_content(json_file_path): |
52 | edit = raw_input("Review information before sending? (y/n): ") | 52 | edit = input("Review information before sending? (y/n): ") |
53 | if 'y' in edit or 'Y' in edit: | 53 | if 'y' in edit or 'Y' in edit: |
54 | editor = os.environ.get('EDITOR', None) | 54 | editor = os.environ.get('EDITOR', None) |
55 | if editor: | 55 | if editor: |