Move copyright notice and be more specific in the README.

master
Simon Quigley 6 years ago
parent f30ef9d89f
commit 233f8b3427

@ -2,23 +2,6 @@
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. For the input file, put one package name on each line and the script will do the rest.
You need the following Python libraries. You need the following Python 3 libraries.
1. sys 1. sys
2. launchpadlib 2. launchpadlib
```
Mass package bug subscription adder for Ubuntu Packages using the Launchpad API
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
as published by the Free Software Foundation; either version 2
of the License, or (at your option) any later version.
This program is distributed in the hope that it will be useful,
but WITHOUT ANY WARRANTY; without even the implied warranty of
MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE. See the
GNU General Public License for more details.
A copy of the GNU General Public License version 2 is in license.txt.
```

@ -1,6 +1,22 @@
#!/usr/bin/python3 #!/usr/bin/python3
# -*- coding: utf-8 -*- # -*- coding: utf-8 -*-
"""
Copyright (C) 2015-2018 Simon Quigley
This program is free software; you can redistribute it and/or
modify it under the terms of the GNU General Public License
as published by the Free Software Foundation; either version 2
of the License, or (at your option) any later version.
This program is distributed in the hope that it will be useful,
but WITHOUT ANY WARRANTY; without even the implied warranty of
MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE. See the
GNU General Public License for more details.
A copy of the GNU General Public License version 2 is in license.txt.
"""
import sys import sys
import launchpadlib import launchpadlib
from launchpadlib.launchpad import Launchpad from launchpadlib.launchpad import Launchpad

Loading…
Cancel
Save