summaryrefslogtreecommitdiff
path: root/git/db.py
diff options
context:
space:
mode:
authorSebastian Thiel <byronimo@gmail.com>2015-01-04 19:14:33 +0100
committerSebastian Thiel <byronimo@gmail.com>2015-01-04 19:14:33 +0100
commitf6aa8d116eb33293c0a9d6d600eb7c32832758b9 (patch)
treeee07288965cfd4e8326c57735e94c347ee7dd829 /git/db.py
parent3936084cdd336ce7db7d693950e345eeceab93a5 (diff)
downloadgitpython-f6aa8d116eb33293c0a9d6d600eb7c32832758b9.tar.gz
initial set of adjustments to make (most) imports work.
More to come, especially when it's about strings
Diffstat (limited to 'git/db.py')
-rw-r--r--git/db.py11
1 files changed, 5 insertions, 6 deletions
diff --git a/git/db.py b/git/db.py
index ab39f6c5..c4e19858 100644
--- a/git/db.py
+++ b/git/db.py
@@ -1,14 +1,8 @@
"""Module with our own gitdb implementation - it uses the git command"""
-from exc import (
- GitCommandError,
- BadObject
-)
-
from gitdb.base import (
OInfo,
OStream
)
-
from gitdb.util import (
bin_to_hex,
hex_to_bin
@@ -16,6 +10,11 @@ from gitdb.util import (
from gitdb.db import GitDB
from gitdb.db import LooseObjectDB
+from .exc import (
+ GitCommandError,
+ BadObject
+)
+
__all__ = ('GitCmdObjectDB', 'GitDB')