Revise wording and update copyright.

master
Simon Quigley 7 years ago
parent fc19186b4f
commit 82807c340c

@ -1,5 +1,5 @@
# Mass package bug subscription adder for Ubuntu Packages using the Launchpad API or "masspackagelp" for short
This python script allows for mass adding of bug subscriptions to a team.
This Python script allows for mass adding of bug subscriptions to a team.
For the input file, put one package name on each line and the script will do the rest.
You need the following Python libraries.
@ -8,7 +8,7 @@ You need the following Python libraries.
```
Mass package bug subscription adder for Ubuntu Packages using the Launchpad API
Copyright (C) 2015, 2016 Simon Quigley
Copyright (C) 2015-2017 Simon Quigley
This program is free software; you can redistribute it and/or
modify it under the terms of the GNU General Public License

@ -10,7 +10,7 @@ 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(ID not full name)? '))
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: '))
with open(filepath, "r") as ins:

Loading…
Cancel
Save