Skip to content

Commit 30f7da5

Browse files
committed
Fix erroneous reference to DateTime "class"
DateTime is not a class here, and the parameter is expected as int. This fixes a documentation bug I introduced in cd16a35 (gitpython-developers#1725).
1 parent bc48d26 commit 30f7da5

File tree

1 file changed

+1
-1
lines changed

1 file changed

+1
-1
lines changed

git/objects/tag.py

+1-1
Original file line numberDiff line numberDiff line change
@@ -68,7 +68,7 @@ def __init__(
6868
:class:`~git.util.Actor` identifying the tagger.
6969
7070
:param tagged_date: int_seconds_since_epoch
71-
The :class:`DateTime` of the tag creation.
71+
The DateTime of the tag creation.
7272
Use :func:`time.gmtime` to convert it into a different format.
7373
7474
:param tagger_tz_offset: int_seconds_west_of_utc

0 commit comments

Comments
 (0)