Skip to content

Commit c352a0d

Browse files
committed
Modified license, so it's correctly recognised by licensee
It _should_ be okay, since the modified version is less permissive The only real addition is `Neither the name of the copyright holder nor`
1 parent 060f64b commit c352a0d

File tree

4 files changed

+8
-7
lines changed

4 files changed

+8
-7
lines changed

LICENSE

Lines changed: 4 additions & 3 deletions
Original file line numberDiff line numberDiff line change
@@ -1,4 +1,4 @@
1-
New BSD License
1+
BSD 3-Clause License
22

33
Copyright (c) 2015, Taehoon Kim
44
All rights reserved.
@@ -13,8 +13,9 @@ modification, are permitted provided that the following conditions are met:
1313
this list of conditions and the following disclaimer in the documentation
1414
and/or other materials provided with the distribution.
1515

16-
* The names of its contributors may not be used to endorse or promote products
17-
derived from this software without specific prior written permission.
16+
* Neither the name of the copyright holder nor the names of its
17+
contributors may be used to endorse or promote products derived from
18+
this software without specific prior written permission.
1819

1920
THIS SOFTWARE IS PROVIDED BY THE COPYRIGHT HOLDERS AND CONTRIBUTORS "AS IS"
2021
AND ANY EXPRESS OR IMPLIED WARRANTIES, INCLUDING, BUT NOT LIMITED TO, THE

README.rst

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -3,7 +3,7 @@ fbchat: Facebook Chat (Messenger) for Python
33

44
.. image:: https://img.shields.io/badge/license-BSD-blue.svg
55
:target: https://github.com/carpedm20/fbchat/tree/master/LICENSE
6-
:alt: License: BSD
6+
:alt: License: BSD 3-Clause
77

88
.. image:: https://img.shields.io/badge/python-2.7%2C%203.4%2C%203.5%2C%203.6%20pypy-blue.svg
99
:target: https://pypi.python.org/pypi/fbchat

fbchat/__init__.py

Lines changed: 2 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -7,7 +7,7 @@
77
Facebook Chat (Messenger) for Python
88
99
:copyright: (c) 2015 - 2018 by Taehoon Kim
10-
:license: BSD, see LICENSE for more details.
10+
:license: BSD 3-Clause, see LICENSE for more details.
1111
"""
1212

1313
from __future__ import unicode_literals
@@ -19,7 +19,7 @@
1919
__description__ = 'Facebook Chat (Messenger) for Python'
2020

2121
__copyright__ = 'Copyright 2015 - 2018 by Taehoon Kim'
22-
__license__ = 'BSD'
22+
__license__ = 'BSD 3-Clause'
2323

2424
__author__ = 'Taehoon Kim; Moreels Pieter-Jan; Mads Marquart'
2525
__email__ = '[email protected]'

setup.cfg

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -1,7 +1,7 @@
11
[metadata]
22
name = fbchat
33
version = attr: fbchat.__version__
4-
license = BSD
4+
license = BSD 3-Clause
55
license_file = LICENSE
66

77
author = Taehoon Kim

0 commit comments

Comments
 (0)