Skip to content

Commit 1c193ba

Browse files
committed
Use consistent minimal license header for code files
Signed-off-by: Cole Robinson <crobinso@redhat.com>
1 parent 8abd0fd commit 1c193ba

24 files changed

Lines changed: 41 additions & 92 deletions

bugzilla/__init__.py

Lines changed: 2 additions & 5 deletions
Original file line numberDiff line numberDiff line change
@@ -3,11 +3,8 @@
33
# Copyright (C) 2007, 2008 Red Hat Inc.
44
# Author: Will Woods <wwoods@redhat.com>
55
#
6-
# This program is free software; you can redistribute it and/or modify it
7-
# under the terms of the GNU General Public License as published by the
8-
# Free Software Foundation; either version 2 of the License, or (at your
9-
# option) any later version. See http://www.gnu.org/copyleft/gpl.html for
10-
# the full text of the license.
6+
# This work is licensed under the GNU GPLv2 or later.
7+
# See the COPYING file in the top-level directory.
118

129
from .apiversion import version, __version__
1310
from .base import Bugzilla

bugzilla/_cli.py

Lines changed: 2 additions & 5 deletions
Original file line numberDiff line numberDiff line change
@@ -6,11 +6,8 @@
66
# Author: Will Woods <wwoods@redhat.com>
77
# Author: Cole Robinson <crobinso@redhat.com>
88
#
9-
# This program is free software; you can redistribute it and/or modify it
10-
# under the terms of the GNU General Public License as published by the
11-
# Free Software Foundation; either version 2 of the License, or (at your
12-
# option) any later version. See http://www.gnu.org/copyleft/gpl.html for
13-
# the full text of the license.
9+
# This work is licensed under the GNU GPLv2 or later.
10+
# See the COPYING file in the top-level directory.
1411

1512
from __future__ import print_function
1613

bugzilla/_rc.py

Lines changed: 2 additions & 5 deletions
Original file line numberDiff line numberDiff line change
@@ -1,8 +1,5 @@
1-
# This program is free software; you can redistribute it and/or modify it
2-
# under the terms of the GNU General Public License as published by the
3-
# Free Software Foundation; either version 2 of the License, or (at your
4-
# option) any later version. See http://www.gnu.org/copyleft/gpl.html for
5-
# the full text of the license.
1+
# This work is licensed under the GNU GPLv2 or later.
2+
# See the COPYING file in the top-level directory.
63

74
import os
85
import sys

bugzilla/_util.py

Lines changed: 2 additions & 5 deletions
Original file line numberDiff line numberDiff line change
@@ -1,8 +1,5 @@
1-
# This program is free software; you can redistribute it and/or modify it
2-
# under the terms of the GNU General Public License as published by the
3-
# Free Software Foundation; either version 2 of the License, or (at your
4-
# option) any later version. See http://www.gnu.org/copyleft/gpl.html for
5-
# the full text of the license.
1+
# This work is licensed under the GNU GPLv2 or later.
2+
# See the COPYING file in the top-level directory.
63

74

85
def listify(val):

bugzilla/apiversion.py

Lines changed: 2 additions & 5 deletions
Original file line numberDiff line numberDiff line change
@@ -1,11 +1,8 @@
11
#
22
# Copyright (C) 2014 Red Hat Inc.
33
#
4-
# This program is free software; you can redistribute it and/or modify it
5-
# under the terms of the GNU General Public License as published by the
6-
# Free Software Foundation; either version 2 of the License, or (at your
7-
# option) any later version. See http://www.gnu.org/copyleft/gpl.html for
8-
# the full text of the license.
4+
# This work is licensed under the GNU GPLv2 or later.
5+
# See the COPYING file in the top-level directory.
96

107
version = "2.3.0"
118
__version__ = version

bugzilla/base.py

Lines changed: 2 additions & 5 deletions
Original file line numberDiff line numberDiff line change
@@ -3,11 +3,8 @@
33
# Copyright (C) 2007, 2008, 2009, 2010 Red Hat Inc.
44
# Author: Will Woods <wwoods@redhat.com>
55
#
6-
# This program is free software; you can redistribute it and/or modify it
7-
# under the terms of the GNU General Public License as published by the
8-
# Free Software Foundation; either version 2 of the License, or (at your
9-
# option) any later version. See http://www.gnu.org/copyleft/gpl.html for
10-
# the full text of the license.
6+
# This work is licensed under the GNU GPLv2 or later.
7+
# See the COPYING file in the top-level directory.
118

129
import getpass
1310
import locale

bugzilla/bug.py

Lines changed: 2 additions & 5 deletions
Original file line numberDiff line numberDiff line change
@@ -3,11 +3,8 @@
33
# Copyright (C) 2007, 2008, 2009, 2010 Red Hat Inc.
44
# Author: Will Woods <wwoods@redhat.com>
55
#
6-
# This program is free software; you can redistribute it and/or modify it
7-
# under the terms of the GNU General Public License as published by the
8-
# Free Software Foundation; either version 2 of the License, or (at your
9-
# option) any later version. See http://www.gnu.org/copyleft/gpl.html for
10-
# the full text of the license.
6+
# This work is licensed under the GNU GPLv2 or later.
7+
# See the COPYING file in the top-level directory.
118

129
from __future__ import unicode_literals
1310
import locale

bugzilla/exceptions.py

Lines changed: 2 additions & 5 deletions
Original file line numberDiff line numberDiff line change
@@ -1,8 +1,5 @@
1-
# This program is free software; you can redistribute it and/or modify it
2-
# under the terms of the GNU General Public License as published by the
3-
# Free Software Foundation; either version 2 of the License, or (at your
4-
# option) any later version. See http://www.gnu.org/copyleft/gpl.html for
5-
# the full text of the license.
1+
# This work is licensed under the GNU GPLv2 or later.
2+
# See the COPYING file in the top-level directory.
63

74

85
class BugzillaError(Exception):

bugzilla/oldclasses.py

Lines changed: 2 additions & 5 deletions
Original file line numberDiff line numberDiff line change
@@ -1,8 +1,5 @@
1-
# This program is free software; you can redistribute it and/or modify it
2-
# under the terms of the GNU General Public License as published by the
3-
# Free Software Foundation; either version 2 of the License, or (at your
4-
# option) any later version. See http://www.gnu.org/copyleft/gpl.html for
5-
# the full text of the license.
1+
# This work is licensed under the GNU GPLv2 or later.
2+
# See the COPYING file in the top-level directory.
63

74
from .base import Bugzilla
85
from .rhbugzilla import RHBugzilla

bugzilla/rhbugzilla.py

Lines changed: 2 additions & 5 deletions
Original file line numberDiff line numberDiff line change
@@ -3,11 +3,8 @@
33
# Copyright (C) 2008-2012 Red Hat Inc.
44
# Author: Will Woods <wwoods@redhat.com>
55
#
6-
# This program is free software; you can redistribute it and/or modify it
7-
# under the terms of the GNU General Public License as published by the
8-
# Free Software Foundation; either version 2 of the License, or (at your
9-
# option) any later version. See http://www.gnu.org/copyleft/gpl.html for
10-
# the full text of the license.
6+
# This work is licensed under the GNU GPLv2 or later.
7+
# See the COPYING file in the top-level directory.
118

129
from logging import getLogger
1310

0 commit comments

Comments
 (0)