diff options
author | Sebastian Thiel <byronimo@gmail.com> | 2010-06-14 12:48:28 +0200 |
---|---|---|
committer | Sebastian Thiel <byronimo@gmail.com> | 2010-06-14 12:51:47 +0200 |
commit | d9240918aa03e49feabe43af619019805ac76786 (patch) | |
tree | 2db7501a00292f8ba4a99cc1381fe161bd039b03 /lib/git/objects/__init__.py | |
parent | fe5289ed8311fecf39913ce3ae86b1011eafe5f7 (diff) | |
download | gitpython-d9240918aa03e49feabe43af619019805ac76786.tar.gz |
tree: added TreeModifier, allowing to adjust existing trees safely and or fast, while staying compatible with serialization which requires it to be sorted
Diffstat (limited to 'lib/git/objects/__init__.py')
-rw-r--r-- | lib/git/objects/__init__.py | 1 |
1 files changed, 1 insertions, 0 deletions
diff --git a/lib/git/objects/__init__.py b/lib/git/objects/__init__.py index 717fa808..ef6b2ea4 100644 --- a/lib/git/objects/__init__.py +++ b/lib/git/objects/__init__.py @@ -7,6 +7,7 @@ from tag import * from blob import * from tree import * from commit import * +from submodule import * __all__ = [ name for name, obj in locals().items() if not (name.startswith('_') or inspect.ismodule(obj)) ]
\ No newline at end of file |