summaryrefslogtreecommitdiff
path: root/lib/git/repo.py
diff options
context:
space:
mode:
authorSebastian Thiel <byronimo@gmail.com>2010-06-12 17:20:43 +0200
committerSebastian Thiel <byronimo@gmail.com>2010-06-12 17:20:43 +0200
commit6c1faef799095f3990e9970bc2cb10aa0221cf9c (patch)
treea79a69fa46df39eb794875f374b74110dfe091e1 /lib/git/repo.py
parent86ea63504f3e8a74cfb1d533be9d9602d2d17e27 (diff)
downloadgitpython-6c1faef799095f3990e9970bc2cb10aa0221cf9c.tar.gz
Removed odb from project, it is now used as a submodule named gitdb, which was added instead
Adjusted all imports to deal with the changed package names
Diffstat (limited to 'lib/git/repo.py')
-rw-r--r--lib/git/repo.py2
1 files changed, 1 insertions, 1 deletions
diff --git a/lib/git/repo.py b/lib/git/repo.py
index 78e5f526..4442a79e 100644
--- a/lib/git/repo.py
+++ b/lib/git/repo.py
@@ -13,7 +13,7 @@ from objects import *
from config import GitConfigParser
from remote import Remote
-from odb import GitObjectDB
+from gitdb import GitObjectDB
import os
import sys