Rename raw_input() to input().

This commit is contained in:
Simon Quigley 2017-08-16 14:24:25 -05:00
parent d659a2254a
commit 74504fe81d

View File

@ -10,8 +10,8 @@ def no_credential():
sys.exit()
lp = Launchpad.login_with('Mass package bug subscription adder', 'production', credential_save_failed=no_credential)
teamtowrite = (raw_input('What person/team would you like to use for this? (Launchpad ID) '))
filepath = (raw_input('Please specify the path of the input file: '))
teamtowrite = (input('What person/team would you like to use for this? (Launchpad ID) '))
filepath = (input('Please specify the path of the input file: '))
with open(filepath, "r") as ins:
filearray = []