From d9240918aa03e49feabe43af619019805ac76786 Mon Sep 17 00:00:00 2001 From: Sebastian Thiel Date: Mon, 14 Jun 2010 12:48:28 +0200 Subject: tree: added TreeModifier, allowing to adjust existing trees safely and or fast, while staying compatible with serialization which requires it to be sorted --- lib/git/objects/__init__.py | 1 + 1 file changed, 1 insertion(+) (limited to 'lib/git/objects/__init__.py') 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 -- cgit v1.2.1