Skip to content

Commit a898bef

Browse files
authored
Merge pull request #96 from EliahKagan/license-ambiguity
Fix top-of-file license URLs here in gitdb too
2 parents d24f019 + e0769d1 commit a898bef

33 files changed

+40
-40
lines changed

gitdb/__init__.py

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -1,7 +1,7 @@
11
# Copyright (C) 2010, 2011 Sebastian Thiel (byronimo@gmail.com) and contributors
22
#
33
# This module is part of GitDB and is released under
4-
# the New BSD License: http://www.opensource.org/licenses/bsd-license.php
4+
# the New BSD License: https://opensource.org/license/bsd-3-clause/
55
"""Initialize the object database module"""
66

77
import sys

gitdb/base.py

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -1,7 +1,7 @@
11
# Copyright (C) 2010, 2011 Sebastian Thiel (byronimo@gmail.com) and contributors
22
#
33
# This module is part of GitDB and is released under
4-
# the New BSD License: http://www.opensource.org/licenses/bsd-license.php
4+
# the New BSD License: https://opensource.org/license/bsd-3-clause/
55
"""Module with basic data structures - they are designed to be lightweight and fast"""
66
from gitdb.util import bin_to_hex
77

gitdb/db/__init__.py

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -1,7 +1,7 @@
11
# Copyright (C) 2010, 2011 Sebastian Thiel (byronimo@gmail.com) and contributors
22
#
33
# This module is part of GitDB and is released under
4-
# the New BSD License: http://www.opensource.org/licenses/bsd-license.php
4+
# the New BSD License: https://opensource.org/license/bsd-3-clause/
55

66
from gitdb.db.base import *
77
from gitdb.db.loose import *

gitdb/db/base.py

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -1,7 +1,7 @@
11
# Copyright (C) 2010, 2011 Sebastian Thiel (byronimo@gmail.com) and contributors
22
#
33
# This module is part of GitDB and is released under
4-
# the New BSD License: http://www.opensource.org/licenses/bsd-license.php
4+
# the New BSD License: https://opensource.org/license/bsd-3-clause/
55
"""Contains implementations of database retrieveing objects"""
66
from gitdb.util import (
77
join,

gitdb/db/git.py

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -1,7 +1,7 @@
11
# Copyright (C) 2010, 2011 Sebastian Thiel (byronimo@gmail.com) and contributors
22
#
33
# This module is part of GitDB and is released under
4-
# the New BSD License: http://www.opensource.org/licenses/bsd-license.php
4+
# the New BSD License: https://opensource.org/license/bsd-3-clause/
55
from gitdb.db.base import (
66
CompoundDB,
77
ObjectDBW,

gitdb/db/loose.py

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -1,7 +1,7 @@
11
# Copyright (C) 2010, 2011 Sebastian Thiel (byronimo@gmail.com) and contributors
22
#
33
# This module is part of GitDB and is released under
4-
# the New BSD License: http://www.opensource.org/licenses/bsd-license.php
4+
# the New BSD License: https://opensource.org/license/bsd-3-clause/
55
from gitdb.db.base import (
66
FileDBBase,
77
ObjectDBR,

gitdb/db/mem.py

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -1,7 +1,7 @@
11
# Copyright (C) 2010, 2011 Sebastian Thiel (byronimo@gmail.com) and contributors
22
#
33
# This module is part of GitDB and is released under
4-
# the New BSD License: http://www.opensource.org/licenses/bsd-license.php
4+
# the New BSD License: https://opensource.org/license/bsd-3-clause/
55
"""Contains the MemoryDatabase implementation"""
66
from gitdb.db.loose import LooseObjectDB
77
from gitdb.db.base import (

gitdb/db/pack.py

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -1,7 +1,7 @@
11
# Copyright (C) 2010, 2011 Sebastian Thiel (byronimo@gmail.com) and contributors
22
#
33
# This module is part of GitDB and is released under
4-
# the New BSD License: http://www.opensource.org/licenses/bsd-license.php
4+
# the New BSD License: https://opensource.org/license/bsd-3-clause/
55
"""Module containing a database to deal with packs"""
66
from gitdb.db.base import (
77
FileDBBase,

gitdb/db/ref.py

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -1,7 +1,7 @@
11
# Copyright (C) 2010, 2011 Sebastian Thiel (byronimo@gmail.com) and contributors
22
#
33
# This module is part of GitDB and is released under
4-
# the New BSD License: http://www.opensource.org/licenses/bsd-license.php
4+
# the New BSD License: https://opensource.org/license/bsd-3-clause/
55
import codecs
66
from gitdb.db.base import (
77
CompoundDB,

gitdb/exc.py

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -1,7 +1,7 @@
11
# Copyright (C) 2010, 2011 Sebastian Thiel (byronimo@gmail.com) and contributors
22
#
33
# This module is part of GitDB and is released under
4-
# the New BSD License: http://www.opensource.org/licenses/bsd-license.php
4+
# the New BSD License: https://opensource.org/license/bsd-3-clause/
55
"""Module with common exceptions"""
66
from gitdb.util import to_hex_sha
77

0 commit comments

Comments
 (0)