diff options
author | Sebastian Thiel <byronimo@gmail.com> | 2009-10-08 14:34:29 +0200 |
---|---|---|
committer | Sebastian Thiel <byronimo@gmail.com> | 2009-10-09 16:19:32 +0200 |
commit | 8430529e1a9fb28d8586d24ee507a8195c370fa5 (patch) | |
tree | 8acfe3a881478d79b210f712f02828fd96ed9a55 /lib/git/tree.py | |
parent | 9c0c2fc4ee2d8a5d0a2de50ba882657989dedc51 (diff) | |
download | gitpython-8430529e1a9fb28d8586d24ee507a8195c370fa5.tar.gz |
Renamed lazy.py to base.py to have a file for base classes - lazy not yet changed to allow proper rename tracking
Diffstat (limited to 'lib/git/tree.py')
-rw-r--r-- | lib/git/tree.py | 2 |
1 files changed, 1 insertions, 1 deletions
diff --git a/lib/git/tree.py b/lib/git/tree.py index 1b546f85..06c1a158 100644 --- a/lib/git/tree.py +++ b/lib/git/tree.py @@ -5,7 +5,7 @@ # the BSD License: http://www.opensource.org/licenses/bsd-license.php import os -from lazy import LazyMixin +from base import LazyMixin import blob class Tree(LazyMixin): |