summaryrefslogtreecommitdiff
path: root/lib/git/tree.py
diff options
context:
space:
mode:
authorSebastian Thiel <byronimo@gmail.com>2009-10-08 14:34:29 +0200
committerSebastian Thiel <byronimo@gmail.com>2009-10-09 16:19:32 +0200
commit8430529e1a9fb28d8586d24ee507a8195c370fa5 (patch)
tree8acfe3a881478d79b210f712f02828fd96ed9a55 /lib/git/tree.py
parent9c0c2fc4ee2d8a5d0a2de50ba882657989dedc51 (diff)
downloadgitpython-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.py2
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):