diff options
Diffstat (limited to 'scripts/send-error-report')
-rwxr-xr-x | scripts/send-error-report | 6 |
1 files changed, 3 insertions, 3 deletions
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: |