mirror of
https://github.com/lubuntu-team/masspackagelp.git
synced 2025-03-10 12:21:06 +00:00
correct login var, production not staging, strip whitespace
This commit is contained in:
parent
8898420325
commit
1f169d5a99
4
main.py
4
main.py
@ -4,13 +4,13 @@ from launchpadlib.launchpad import Launchpad
|
|||||||
def no_credential():
|
def no_credential():
|
||||||
print("Can't proceed without Launchpad credentials.")
|
print("Can't proceed without Launchpad credentials.")
|
||||||
sys.exit()
|
sys.exit()
|
||||||
launchpad = Launchpad.login_with('Mass package bug subscription adder', 'staging', credential_save_failed=no_credential)
|
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(ID not full name)? '))
|
teamtowrite = (raw_input('What person/team would you like to use for this(ID not full name)? '))
|
||||||
filepath = (raw_input('Please specify the path of the input file: '))
|
filepath = (raw_input('Please specify the path of the input file: '))
|
||||||
with open(filepath, "r") as ins:
|
with open(filepath, "r") as ins:
|
||||||
filearray = []
|
filearray = []
|
||||||
for line in ins:
|
for line in ins:
|
||||||
filearray.append(line)
|
filearray.append(line.strip())
|
||||||
for i in range(len(filearray)):
|
for i in range(len(filearray)):
|
||||||
print("Assigning:")
|
print("Assigning:")
|
||||||
print(filearray[i])
|
print(filearray[i])
|
||||||
|
Loading…
x
Reference in New Issue
Block a user