diff options
| author | Sebastian Thiel <byronimo@gmail.com> | 2016-10-22 11:11:25 +0200 |
|---|---|---|
| committer | Sebastian Thiel <byronimo@gmail.com> | 2016-10-22 11:11:25 +0200 |
| commit | caa0ea7a0893fe90ea043843d4e6ad407126d7b8 (patch) | |
| tree | 2f688eb182f2e76091134c47c4a327681c12e15b /git/objects/tag.py | |
| parent | afcd64ebbb770908bd2a751279ff070dea5bb97c (diff) | |
| parent | cc77e6b2862733a211c55cf29cc7a83c36c27919 (diff) | |
| download | GitPython-caa0ea7a0893fe90ea043843d4e6ad407126d7b8.tar.gz GitPython-caa0ea7a0893fe90ea043843d4e6ad407126d7b8.zip | |
Merge branch 'cygwin' of https://github.com/ankostis/GitPython into ankostis-cygwin
Diffstat (limited to 'git/objects/tag.py')
| -rw-r--r-- | git/objects/tag.py | 9 |
1 files changed, 3 insertions, 6 deletions
diff --git a/git/objects/tag.py b/git/objects/tag.py index cefff083..19cb04bf 100644 --- a/git/objects/tag.py +++ b/git/objects/tag.py @@ -5,12 +5,9 @@ # the BSD License: http://www.opensource.org/licenses/bsd-license.php """ Module containing all object based types. """ from . import base -from .util import ( - get_object_type_by_name, - parse_actor_and_date -) -from gitdb.util import hex_to_bin -from git.compat import defenc +from .util import get_object_type_by_name, parse_actor_and_date +from ..util import hex_to_bin +from ..compat import defenc __all__ = ("TagObject", ) |
