diff options
author | Sebastian Thiel <byronimo@gmail.com> | 2010-11-18 23:10:23 +0100 |
---|---|---|
committer | Sebastian Thiel <byronimo@gmail.com> | 2010-11-18 23:10:23 +0100 |
commit | 9519f186ce757cdba217f222c95c20033d00f91d (patch) | |
tree | 8bd4b8829768fe0195d41a3aa067aa1ac7435605 /lib/git/objects/__init__.py | |
parent | 4c34d5c3f2a4ed7194276a026e0ec6437d339c67 (diff) | |
download | gitpython-9519f186ce757cdba217f222c95c20033d00f91d.tar.gz |
Fixed all imports, refactoring appears to be complete
Diffstat (limited to 'lib/git/objects/__init__.py')
-rw-r--r-- | lib/git/objects/__init__.py | 11 |
1 files changed, 9 insertions, 2 deletions
diff --git a/lib/git/objects/__init__.py b/lib/git/objects/__init__.py index 85c7e38c..e8e0ef39 100644 --- a/lib/git/objects/__init__.py +++ b/lib/git/objects/__init__.py @@ -3,11 +3,18 @@ Import all submodules main classes into the package space """ import inspect from base import * +# Fix import dependency - add IndexObject to the util module, so that it can be +# imported by the submodule.base +import submodule.util +submodule.util.IndexObject = IndexObject +from submodule.base import * +from submodule.root import * + +# must come after submodule was made available from tag import * from blob import * -from tree import * from commit import * -from submodule import * +from tree import * from util import Actor __all__ = [ name for name, obj in locals().items() |