Skip to content

Commit af1b5d4

Browse files
committed
Fix commented *.py names at the top of modules
A number of them were incorrect, due to how files were renamed, and code moved between them, over time. Some were corrected earlier, and most of the rest are corrected here. Not all modules have these at all. This does not add any to modules that don't have them. It only fixes them where present but wrong.
1 parent a040edb commit af1b5d4

File tree

6 files changed

+6
-6
lines changed

6 files changed

+6
-6
lines changed

Diff for: git/index/base.py

+1-1
Original file line numberDiff line numberDiff line change
@@ -1,4 +1,4 @@
1-
# index.py
1+
# base.py
22
# Copyright (C) 2008, 2009 Michael Trier ([email protected]) and contributors
33
#
44
# This module is part of GitPython and is released under

Diff for: git/objects/tag.py

+1-1
Original file line numberDiff line numberDiff line change
@@ -1,4 +1,4 @@
1-
# objects.py
1+
# tag.py
22
# Copyright (C) 2008, 2009 Michael Trier ([email protected]) and contributors
33
#
44
# This module is part of GitPython and is released under

Diff for: git/repo/base.py

+1-1
Original file line numberDiff line numberDiff line change
@@ -1,4 +1,4 @@
1-
# repo.py
1+
# base.py
22
# Copyright (C) 2008, 2009 Michael Trier ([email protected]) and contributors
33
#
44
# This module is part of GitPython and is released under

Diff for: git/util.py

+1-1
Original file line numberDiff line numberDiff line change
@@ -1,4 +1,4 @@
1-
# utils.py
1+
# util.py
22
# Copyright (C) 2008, 2009 Michael Trier ([email protected]) and contributors
33
#
44
# This module is part of GitPython and is released under

Diff for: test/test_db.py

+1-1
Original file line numberDiff line numberDiff line change
@@ -1,4 +1,4 @@
1-
# test_repo.py
1+
# test_db.py
22
# Copyright (C) 2008, 2009 Michael Trier ([email protected]) and contributors
33
#
44
# This module is part of GitPython and is released under

Diff for: test/test_docs.py

+1-1
Original file line numberDiff line numberDiff line change
@@ -1,5 +1,5 @@
11
# -*- coding: utf-8 -*-
2-
# test_git.py
2+
# test_docs.py
33
# Copyright (C) 2008, 2009 Michael Trier ([email protected]) and contributors
44
#
55
# This module is part of GitPython and is released under

0 commit comments

Comments
 (0)