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 ([email protected]) 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
importsys

‎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 ([email protected]) 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
fromgitdb.utilimportbin_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 ([email protected]) 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
fromgitdb.db.baseimport*
77
fromgitdb.db.looseimport*

‎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 ([email protected]) 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
fromgitdb.utilimport (
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 ([email protected]) 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
fromgitdb.db.baseimport (
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 ([email protected]) 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
fromgitdb.db.baseimport (
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 ([email protected]) 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
fromgitdb.db.looseimportLooseObjectDB
77
fromgitdb.db.baseimport (

‎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 ([email protected]) 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
fromgitdb.db.baseimport (
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 ([email protected]) 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
importcodecs
66
fromgitdb.db.baseimport (
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 ([email protected]) 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
fromgitdb.utilimportto_hex_sha
77

0 commit comments

Comments
(0)