diff options
| author | Sebastian Thiel <byronimo@gmail.com> | 2010-11-24 19:48:59 +0100 |
|---|---|---|
| committer | Sebastian Thiel <byronimo@gmail.com> | 2010-11-24 19:48:59 +0100 |
| commit | 3175b5b21194bcc8f4448abe0a03a98d3a4a1360 (patch) | |
| tree | f1a098c4b38ae3b7cf52600e9fc9c357cdd7c353 /objects/__init__.py | |
| parent | fca367548e365f93c58c47dea45507025269f59a (diff) | |
| parent | 3203cd7629345d32806f470a308975076b2b4686 (diff) | |
| download | GitPython-3175b5b21194bcc8f4448abe0a03a98d3a4a1360.tar.gz GitPython-3175b5b21194bcc8f4448abe0a03a98d3a4a1360.zip | |
Merge branch 'reflog'
Diffstat (limited to 'objects/__init__.py')
| -rw-r--r-- | objects/__init__.py | 2 |
1 files changed, 1 insertions, 1 deletions
diff --git a/objects/__init__.py b/objects/__init__.py index e8e0ef39..77f69d29 100644 --- a/objects/__init__.py +++ b/objects/__init__.py @@ -7,6 +7,7 @@ from base import * # imported by the submodule.base import submodule.util submodule.util.IndexObject = IndexObject +submodule.util.Object = Object from submodule.base import * from submodule.root import * @@ -15,7 +16,6 @@ from tag import * from blob import * from commit import * from tree import * -from util import Actor __all__ = [ name for name, obj in locals().items() if not (name.startswith('_') or inspect.ismodule(obj)) ]
\ No newline at end of file |
