diff options
author | Sebastian Thiel <byronimo@gmail.com> | 2011-05-06 15:03:14 +0200 |
---|---|---|
committer | Sebastian Thiel <byronimo@gmail.com> | 2011-05-06 15:03:14 +0200 |
commit | acf5e6ea64a2f24117f1d419c208ed1c38c43690 (patch) | |
tree | 75dedc18137297829e84f3a151130a589c3d844b /git/refs | |
parent | 56da804ff295a05a38dc2cc73755706ea756fc52 (diff) | |
download | gitpython-acf5e6ea64a2f24117f1d419c208ed1c38c43690.tar.gz |
replaced all gitdb strings with git
Diffstat (limited to 'git/refs')
-rw-r--r-- | git/refs/headref.py | 4 | ||||
-rw-r--r-- | git/refs/log.py | 4 | ||||
-rw-r--r-- | git/refs/reference.py | 2 | ||||
-rw-r--r-- | git/refs/remote.py | 2 | ||||
-rw-r--r-- | git/refs/symbolic.py | 6 | ||||
-rw-r--r-- | git/refs/tag.py | 2 |
6 files changed, 10 insertions, 10 deletions
diff --git a/git/refs/headref.py b/git/refs/headref.py index 6fb7fea1..67117e96 100644 --- a/git/refs/headref.py +++ b/git/refs/headref.py @@ -1,6 +1,6 @@ from reference import Reference -from gitdb.config import SectionConstraint -from gitdb.util import join_path +from git.config import SectionConstraint +from git.util import join_path __all__ = ["Head"] diff --git a/git/refs/log.py b/git/refs/log.py index 3aa0b4a3..2028efb9 100644 --- a/git/refs/log.py +++ b/git/refs/log.py @@ -1,4 +1,4 @@ -from gitdb.util import ( +from git.util import ( join_path, Actor, LockedFD, @@ -10,7 +10,7 @@ from gitdb.util import ( file_contents_ro_filepath ) -from gitdb.object.util import ( +from git.object.util import ( parse_date, Serializable, utctz_to_altz, diff --git a/git/refs/reference.py b/git/refs/reference.py index 6373cb3e..838a29e3 100644 --- a/git/refs/reference.py +++ b/git/refs/reference.py @@ -2,7 +2,7 @@ import os from symbolic import SymbolicReference from head import HEAD -from gitdb.util import ( +from git.util import ( LazyMixin, Iterable, isfile, diff --git a/git/refs/remote.py b/git/refs/remote.py index bfe80e62..b883b00b 100644 --- a/git/refs/remote.py +++ b/git/refs/remote.py @@ -1,6 +1,6 @@ import os from headref import Head -from gitdb.util import ( +from git.util import ( join, join_path ) diff --git a/git/refs/symbolic.py b/git/refs/symbolic.py index 70cfc7d6..847c563d 100644 --- a/git/refs/symbolic.py +++ b/git/refs/symbolic.py @@ -1,11 +1,11 @@ import os import re -from gitdb.object import ( +from git.object import ( Object, Commit ) -from gitdb.util import ( +from git.util import ( join_path, join_path_native, to_native_path_linux, @@ -20,7 +20,7 @@ from gitdb.util import ( LockedFD ) -from gitdb.exc import BadObject +from git.exc import BadObject from log import RefLog __all__ = ["SymbolicReference"] diff --git a/git/refs/tag.py b/git/refs/tag.py index 24a8e768..7a0caa48 100644 --- a/git/refs/tag.py +++ b/git/refs/tag.py @@ -1,4 +1,4 @@ -from gitdb.ref.tag import TagReference as GitDB_TagReference +from git.ref.tag import TagReference as GitDB_TagReference __all__ = ["TagReference", "Tag"] |