mirror of
https://github.com/lubuntu-team/masspackagelp.git
synced 2025-05-12 20:11:29 +00:00
Don't error out if the file isn't found.
This commit is contained in:
parent
777acdee75
commit
f30ef9d89f
15
main.py
15
main.py
@ -11,12 +11,17 @@ def no_credential():
|
|||||||
|
|
||||||
lp = Launchpad.login_with('Mass package bug subscription adder', 'production', credential_save_failed=no_credential)
|
lp = Launchpad.login_with('Mass package bug subscription adder', 'production', credential_save_failed=no_credential)
|
||||||
teamtowrite = (input('What person/team would you like to use for this? (Launchpad ID) '))
|
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:
|
while True:
|
||||||
filearray = []
|
try:
|
||||||
for line in ins:
|
filepath = (input('Please specify the path of the input file: '))
|
||||||
filearray.append(line.strip())
|
with open(filepath, "r") as ins:
|
||||||
|
filearray = []
|
||||||
|
for line in ins:
|
||||||
|
filearray.append(line.strip())
|
||||||
|
break
|
||||||
|
except FileNotFoundError:
|
||||||
|
print("File not found.")
|
||||||
|
|
||||||
for i in range(len(filearray)):
|
for i in range(len(filearray)):
|
||||||
print("Assigning:")
|
print("Assigning:")
|
||||||
|
Loading…
x
Reference in New Issue
Block a user