diff options
| author | Sebastian Thiel <byronimo@gmail.com> | 2010-06-28 19:15:42 +0200 |
|---|---|---|
| committer | Sebastian Thiel <byronimo@gmail.com> | 2010-06-28 19:15:54 +0200 |
| commit | 1fe889ea0cb2547584075dc1eb77f52c54b9a8c4 (patch) | |
| tree | cd3685e0bd87441eab4888efbc4e14a232a65a7b /lib/git/objects/tag.py | |
| parent | 47e3138ee978ce708a41f38a0d874376d7ae5c78 (diff) | |
| download | GitPython-1fe889ea0cb2547584075dc1eb77f52c54b9a8c4.tar.gz GitPython-1fe889ea0cb2547584075dc1eb77f52c54b9a8c4.zip | |
All tests adjusted to work with the changed internal sha representation
Diffstat (limited to 'lib/git/objects/tag.py')
| -rw-r--r-- | lib/git/objects/tag.py | 2 |
1 files changed, 1 insertions, 1 deletions
diff --git a/lib/git/objects/tag.py b/lib/git/objects/tag.py index 2e6ec878..702eae35 100644 --- a/lib/git/objects/tag.py +++ b/lib/git/objects/tag.py @@ -32,7 +32,7 @@ class TagObject(base.Object): it into a different format :param tagged_tz_offset: int_seconds_west_of_utc is the timezone that the authored_date is in, in a format similar to time.altzone""" - super(TagObject, self).__init__(repo, sha ) + super(TagObject, self).__init__(repo, binsha ) self._set_self_from_args_(locals()) def _set_cache_(self, attr): |
